Class: Zine::Page::FormattedData
- Inherits:
-
Object
- Object
- Zine::Page::FormattedData
- Includes:
- ERB::Util
- Defined in:
- lib/zine/page.rb
Overview
the meta data, passed formatted to the template
Instance Attribute Summary collapse
-
#config ⇒ Object
Returns the value of attribute config.
-
#data ⇒ Object
Returns the value of attribute data.
-
#footer_partial ⇒ Object
Returns the value of attribute footer_partial.
-
#header_partial ⇒ Object
Returns the value of attribute header_partial.
-
#html ⇒ Object
Returns the value of attribute html.
-
#page ⇒ Object
readonly
Returns the value of attribute page.
-
#uri ⇒ Object
Returns the value of attribute uri.
Instance Method Summary collapse
-
#initialize(front_matter, site_opt) ⇒ FormattedData
constructor
A new instance of FormattedData.
- #public_binding ⇒ Object
Constructor Details
#initialize(front_matter, site_opt) ⇒ FormattedData
Returns a new instance of FormattedData.
29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'lib/zine/page.rb', line 29 def initialize(front_matter, site_opt) @config = site_opt = @config['options'] @page = { date_rfc3339: front_matter['date'], date_rfc822: parse_822_date(front_matter['date']), date_us: parse_date(front_matter['date']), github_name: ['github_name'], links_array: @config['links'], num_items_on_home: ['num_items_on_home'], site_author: ['site_author'], site_description: ['site_description'], site_name: ['site_name'], site_URL: ['site_URL'], tags: (front_matter['tags']), title: html_escape(front_matter['title']), twitter_name: ['twitter_name'], uri: '' } # uri only generated for posts, and not until after markdown, TO DO end |
Instance Attribute Details
#config ⇒ Object
Returns the value of attribute config.
26 27 28 |
# File 'lib/zine/page.rb', line 26 def config @config end |
#data ⇒ Object
Returns the value of attribute data.
26 27 28 |
# File 'lib/zine/page.rb', line 26 def data @data end |
#footer_partial ⇒ Object
Returns the value of attribute footer_partial.
26 27 28 |
# File 'lib/zine/page.rb', line 26 def @footer_partial end |
#header_partial ⇒ Object
Returns the value of attribute header_partial.
26 27 28 |
# File 'lib/zine/page.rb', line 26 def header_partial @header_partial end |
#html ⇒ Object
Returns the value of attribute html.
26 27 28 |
# File 'lib/zine/page.rb', line 26 def html @html end |
#page ⇒ Object (readonly)
Returns the value of attribute page.
27 28 29 |
# File 'lib/zine/page.rb', line 27 def page @page end |
#uri ⇒ Object
Returns the value of attribute uri.
26 27 28 |
# File 'lib/zine/page.rb', line 26 def uri @uri end |
Instance Method Details
#public_binding ⇒ Object
48 49 50 |
# File 'lib/zine/page.rb', line 48 def public_binding binding end |