summaryrefslogtreecommitdiff
path: root/lib/page_index.rb
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2017-01-09 19:46:12 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2017-01-09 19:46:12 -0500
commit3290015d64bf739adb00da719dfe15ae5165c840 (patch)
tree3ca615d45b46dd2085b189be56bebecc93e6db65 /lib/page_index.rb
parent0c73fda3ed731b9dbfbc32fae31fd497e02acf90 (diff)
page_index: make the data flow clearer
Diffstat (limited to 'lib/page_index.rb')
-rw-r--r--lib/page_index.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/page_index.rb b/lib/page_index.rb
index 3c2f504..6ae4318 100644
--- a/lib/page_index.rb
+++ b/lib/page_index.rb
@@ -69,10 +69,10 @@ class IndexPage < LocalPage
ret += "\n"
return ret.gsub(/\n\n+/, "\n\n")
end
- def atom_title
+ def index_title
_metadata['title']
end
- def atom_author
+ def index_author
Person::new(_metadata['author'] || Config::get.default_author)
end