structrdfal 0.1.0 → 0.1.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 828818eca9e23770610b816b3056be682c7dc624170fa83afc67a272ad24140a
4
- data.tar.gz: 49d327859c952e0d292e96e3d18ca174e788d8efb15deae39f1be2603255e930
3
+ metadata.gz: 13f14c3971b22d3191922dc82d2d12b18e22e7923f76f2387ae2f2640b8f1798
4
+ data.tar.gz: 73f0080e9f3ac01743741c6ec80b81be08cac4902e77fe81fa8f8998b910b615
5
5
  SHA512:
6
- metadata.gz: bb896e77779eb257d8abf362cfad2722a8fb93a1fe51faf15665658b609e23feb3484e7990f725b71f554f6b620906677776434bcb030dfae1d8b962c41ec2f3
7
- data.tar.gz: dda117c210b9feede4a515998e430209a3fbe6958586823802b2fa85584d64bfe256feb61f98e3311bbdaf0578db6ff7102b12b117edf1b99e13b99fe89f8563
6
+ metadata.gz: db05ed517d3460cc1fc7260eef8e72df3b9f074e784dddef6307a92b4efcf0b96c2f8f8d8d2f00e6891beaa924edcd80c5535e9510e44e5239d32f2f91501893
7
+ data.tar.gz: 0cc2ba3c3049ad49fd86fbe20dae9c9fc1653b1cd8685601ccb55a2e420151d2b685c851db4e3ff9225f80b8fd758c5cc21a9d8561950b3e7d479f8e1a012dcc
data/README.md CHANGED
@@ -1,11 +1,13 @@
1
- ######################################################################
2
- # StructuredData-RDFa-Lite
3
- ######################################################################
4
- This theme provides structured data markup in the form of RDFa Lite (https://www.w3.org/TR/rdfa-lite/) for maximum human readability and smaller files (less repetition than JSON-LD (https://json-ld.org/), microdata (https://www.w3.org/TR/microdata/), or full RDFa (https://rdfa.info/). Additionally, for best practices purposes it is based on HTML5 Boilerplate (v7.0.1, https://html5boilerplate.com/), hence some additional directories (css, js, html5-boilerplate-docs, .colophon) and files (.editorconfig, .htaccess, 404.html, site.webmanifest, robots.txt, humans.txt, browserconfig.xml).
1
+ # [Structured Data RDFa Lite Jekyll theme](https://github.com/arghc/testing-repo)
2
+
3
+ [![Jekyll](https://img.shields.io/badge/jekyll-%3E%3D%203.7-blue.svg)](https://jekyllrb.com/)
4
+ [![Ruby gem](https://img.shields.io/gem/v/minimal-mistakes-jekyll.svg)](https://rubygems.org/gems/structrdfal)
5
+
6
+ This Jekyll theme ([live demo](http://struct.arghc.ca/)) provides structured data markup in the form of [RDFa Lite](https://www.w3.org/TR/rdfa-lite/) for maximum human readability and smaller files (less repetition than [JSON-LD](https://json-ld.org/), [microdata](https://www.w3.org/TR/microdata/), or full [RDFa](https://rdfa.info/). Additionally, for best practices purposes it is based on [HTML5 Boilerplate](https://html5boilerplate.com/) (v7.0.1), hence some additional directories (styles, scripts, html5-boilerplate-docs, .colophon) and files (.editorconfig, .htaccess, 404.html, site.webmanifest, robots.txt, humans.txt, browserconfig.xml).
5
7
 
6
8
  The favicon.ico, icon.png, tile.png, and tile-wide.png files are images provided by HTML5 Boilerplate and left as-is so that you can get an idea for the sizes involved. They should, of course, be replaced ASAP with images appropriate to YOUR site.
7
9
 
8
- The structured data schemas (https://schema.org/) currently implemented are WebPage (AboutPage, ContactPage), Blog, BlogPosting, and Event.
10
+ The structured data [schemas](https://schema.org/) currently implemented are WebPage (AboutPage, ContactPage), Blog, BlogPosting, and Event.
9
11
 
10
12
  In future, I plan to
11
13
  - implement schemas: Review, Book, HowTo, and CollectionPage (ImageGallery).
@@ -13,26 +15,21 @@ In future, I plan to
13
15
  - better (actually) utilize SASS.
14
16
  - implement breadcrumbs
15
17
 
16
- Welcome to your new Jekyll theme! In this directory, you'll find the files you need to be able to package up your theme into a gem. Put your layouts in `_layouts`, your includes in `_includes`, your sass files in `_sass` and any other assets in `assets`.
17
-
18
- To experiment with this code, add some sample content and run `bundle exec jekyll serve` – this directory is setup just like a Jekyll site!
19
-
20
- TODO: Delete this and the text above, and describe your gem
21
-
18
+ ![layout examples](screenshots.png)
22
19
 
23
- ######################################################################
24
20
  ## Installation
25
- ######################################################################
26
- Add this line to your Jekyll site's `Gemfile`:
21
+
22
+ Add this line to your Jekyll site's `Gemfile` (note the version of paginate-v2, as of early 2019 there is a [problem](https://github.com/sverrirs/jekyll-paginate-v2/issues/150):
27
23
 
28
24
  ```ruby
29
- gem "jektheme"
25
+ gem "structRDFaL"
26
+ gem 'jekyll-paginate-v2', '2.0.0'
30
27
  ```
31
28
 
32
29
  And add this line to your Jekyll site's `_config.yml`:
33
30
 
34
31
  ```yaml
35
- theme: jektheme
32
+ theme: structRDFaL
36
33
  ```
37
34
 
38
35
  And then execute:
@@ -41,93 +38,68 @@ And then execute:
41
38
 
42
39
  Or install it yourself as:
43
40
 
44
- $ gem install jektheme
41
+ $ gem install structRDFaL
45
42
 
46
- ######################################################################
47
43
  ## Usage
48
- ######################################################################
49
- # _layouts
50
- #----------------------------------------------------------------------
51
- sitehome.html is a slight modification from default.html based on the idea that some of the logic needed to have just one template seemed like an unnecessary burden to put on *every* page in the site. I may re-engineer things or just change my mind about that later.
52
- default.html the base for everything else
53
- aboutPage.html you should have one. sets WebPage type for you.
54
- contactPage.html you should have one. sets WebPage type for you. contactform.html is included in assets if you want to modify mine
55
- bloghome.html schema.org compliant Blog (sort of, see notes in comments), lists and paginates all your posts
56
- event.html schema.org compliant Event, uses the BlogPosting layout. See eventform.html for some other Event types.
57
- page.html just the default generated from "jekyll new"
58
- post.html schema.org compliant BlogPosting (sort of, see notes in bloghome)
59
-
60
- autopage_category.html
61
- autopage_tags.html the templates that paginate-v2 autopages expect.
62
-
63
- #----------------------------------------------------------------------
64
- # _includes
65
- #----------------------------------------------------------------------
66
- blogList.html implements pagination-v2 logic and uses autopages for tags and categories
67
- catag.html where the list of linked categories and tags are generated
68
- catag-old.html before autopages, a single page list of categories, and another for tags were generated. These links go there.
69
- footer.html contact info for you, javascript library inclusion, google analytics
70
- nav.html site navigation included on each page. the current page link is disabled for proper usability.
71
-
72
- #----------------------------------------------------------------------
73
- # assets
74
- #----------------------------------------------------------------------
44
+ ### `_layouts`
45
+ `sitehome.html` is a slight modification from default.html based on the idea that some of the logic needed to have just one template seemed like an unnecessary burden to put on **every** page in the site. I may re-engineer things or just change my mind about that later.
46
+ `default.html` the base for everything else
47
+ `aboutPage.html` you should have one. sets WebPage type for you.
48
+ `contactPage.html` you should have one. sets WebPage type for you. contactform.html is included in assets if you want to modify mine
49
+ `bloghome.html` schema.org compliant Blog (sort of, see notes in comments), lists and paginates all your posts
50
+ `event.html` schema.org compliant Event page, uses the default layout. See eventform.html for some other Event types.
51
+ `eventpost.html` schema.org compliant Event post, uses the BlogPosting layout.
52
+ `page.html` just the default generated from "jekyll new"
53
+ `post.html` schema.org compliant BlogPosting (sort of, see notes in bloghome)
54
+
55
+ `autopage_category.html`
56
+ `autopage_tags.html` the templates that paginate-v2 autopages expect.
57
+
58
+ ### `_includes`
59
+
60
+ `blogList.html` implements pagination-v2 logic and uses autopages for tags and categories
61
+ `catag.html` where the list of linked categories and tags are generated
62
+ `catag-old.html` before autopages, a single page list of categories, and another for tags were generated. These links go there.
63
+ `footer.html` contact info for you, javascript library inclusion, google analytics
64
+ `nav.html` site navigation included on each page. the current page link is disabled for proper usability.
65
+
66
+ ### `assets`
75
67
  Everything in the assets directory should be moved out to the root directory of your site where they are EXPECTED (.colophon is optional and just for your information). The images are there mostly for your sizing reference when you create your own. Obviously, customize away, nothing needs to remain as-is.
76
68
 
77
- There is only a slight (real) difference between HTML5 Boilerplate's 404.html and the one that Jekyll generates when you create a new instantiation, so what you want to do there is entirely up to you.
69
+ There is only a slight (real) difference between HTML5 Boilerplate's `404.html` and the one that Jekyll generates when you create a new instantiation, so what you want to do there is entirely up to you.
78
70
 
79
- Actually, eventform.html and contactform.html are forms that I use on my sites to capture data from the public, feel free to mod and use if you're incorporating Events or don't have any other contact type plans.
71
+ Actually, `eventform.html` and `contactform.html` are forms that I use on my sites to capture data from the public, feel free to mod and use if you're incorporating Events or don't have any other contact type plans. Also tag.html and category.html are used in conjunction with catag-old.html
80
72
 
81
- #----------------------------------------------------------------------
82
- # _sass
83
- #----------------------------------------------------------------------
84
- I'm just learning Sass, so the only thing in _sass directory is the pieces for normalize-scss, read about it in the .colophon
73
+ ### `_sass`
74
+ I'm just learning Sass, so the only thing in `_sass` directory is the pieces for `normalize-scss`, read about it in the `.colophon`
85
75
 
86
- #----------------------------------------------------------------------
87
- # _config.yml
88
- #----------------------------------------------------------------------
89
- "title/sitemark": Page titles will be created from either "sitemark - page.title" or "page.title - site.title", so config sitemark if so desired.
90
- "email": is used in several places with nothing to prevent spammers from scraping it, you have been warned.
91
- "author": is used in multiple places in the metadata.
92
- "scPath": the path to your (java)scripts, I recommend "/scripts/"
93
- "stPath": the path to your CSS, I recommend "/styles/"
76
+ ### `_config.yml`
77
+ `title`/`sitemark`: Page titles will be created from either "sitemark - page.title" or "page.title - site.title", so config `sitemark` if so desired.
78
+ `email`: is used in several places with nothing to prevent spammers from scraping it, you have been warned.
79
+ `author`: is used in multiple places in the metadata.
80
+ `scPath`: the path to your (java)scripts, I recommend `/scripts/`
81
+ `stPath`: the path to your CSS, I recommend `/styles/`
94
82
 
95
- The jekyll-paginate-v2 plugin is expected
83
+ The `jekyll-paginate-v2` plugin is expected
96
84
 
97
- #---- These are OPTIONAL ----#
98
- "specialty": used in WebPage Schema: One of the domain specialities to which this web page's content applies.
99
- "google_analytics": your google_analytics code
100
- "javascriptON": set if you want the HTML5 Boilerplate JS recommended libraries (main.js, plugins.js, jquery-3.3.1.min.js, modernizr-3.6.0.min.js) included at the bottom of each page
101
- "copynotice": something like "Copyright Acme 1999 - All rights reserved." or a link to creative commons pages is fine. (http://www.dublincore.org/documents/2001/04/12/usageguide/sectc/#rights, http://www.dublincore.org/documents/2001/04/12/usageguide/simple-html/#rights). Currently only used in metadata, I'll get around to putting it in the footer at some point.
85
+ ### These are OPTIONAL
86
+ `specialty`: used in `WebPage` Schema: "One of the domain specialities to which this web page's content applies."
87
+ `google_analytics`: your Google Analytics code
88
+ `javascriptON`: set if you want the HTML5 Boilerplate JS recommended libraries (`main.js`, `plugins.js`, `jquery-3.3.1.min.js`, `modernizr-3.6.0.min.js`) included at the bottom of *each* page
89
+ `copynotice`: something like "Copyright Acme 1999 - All rights reserved." or a link to creative commons pages is fine. ([Dublin Core usage guide](http://www.dublincore.org/documents/2001/04/12/usageguide/sectc/#rights), [Dublin Core example code](http://www.dublincore.org/documents/2001/04/12/usageguide/simple-html/#rights)). Currently only used in metadata, I'll get around to putting it in the footer at some point.
102
90
 
103
- #----------------------------------------------------------------------
104
- # per page frontmatter options
105
- #----------------------------------------------------------------------
106
- "description": if a page.description does not exist, the site.description is used in the metadata
107
- "meta-creator": if a page is authored by someone not the site author, a "page.meta-creator" can be set
108
- "subject": similar but different from keywords. (http://www.dublincore.org/documents/2001/04/12/usageguide/sectb/#subject, http://www.dublincore.org/documents/dcmes-qualifiers/#subject)
109
- "creation-date": http://www.dublincore.org/documents/dcmes-qualifiers/#date (will be integrated into the schema metadata at some point.)
91
+ ### Per Page Frontmatter Options
92
+ `description`: if a `page.description` does not exist, the `site.description` is used in the metadata
93
+ `meta-creator`: if a page is authored by someone not the site `author`, a `page.meta-creator` can be set
94
+ `keywords`: `keywords` for HTML metadata and Dublin Core, maybe later for one or another Schema (note that blogpost `tags` and `categories` are added to `keywords` for metadata purposes).
95
+ `subject`: similar but different from `keywords`. ([Dublin Core usage guide](http://www.dublincore.org/documents/2001/04/12/usageguide/sectb/#subject), [Dublin Core qualifer options](http://www.dublincore.org/documents/dcmes-qualifiers/#subject))
96
+ `creation-date`: [Dublin Core date qualifier options](http://www.dublincore.org/documents/dcmes-qualifiers/#date) (will be integrated into the schema metadata at some point.)
110
97
 
111
- Read the comments in the default.html layout for more options.
98
+ Read the comments in the `default.html` layout for more options.
112
99
 
113
- ######################################################################
114
100
  ## Contributing
115
- ######################################################################
116
-
117
- Bug reports and pull requests are welcome on GitHub at https://github.com/[USERNAME]/hello. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
118
-
119
- ######################################################################
120
- ## Development
121
- ######################################################################
122
- To set up your environment to develop this theme, run `bundle install`.
123
-
124
- Your theme is setup just like a normal Jekyll site! To test your theme, run `bundle exec jekyll serve` and open your browser at `http://localhost:4000`. This starts a Jekyll server using your theme. Add pages, documents, data, etc. like normal to test your theme's contents. As you make modifications to your theme and to your content, your site will regenerate and you should see the changes in the browser after a refresh, just like normal.
125
-
126
- When your theme is released, only the files in `_layouts`, `_includes`, `_sass` and `assets` tracked with Git will be bundled.
127
- To add a custom directory to your theme-gem, please edit the regexp in `jektheme.gemspec` accordingly.
101
+ Bug reports and pull requests are welcome on GitHub at https://github.com/arghc/structRDFaL. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the [Contributor Covenant](http://contributor-covenant.org) code of conduct.
128
102
 
129
- ######################################################################
130
103
  ## License
131
- ######################################################################
132
104
  The theme is available as open source under the terms of the [MIT License](https://opensource.org/licenses/MIT).
133
105
 
@@ -0,0 +1,143 @@
1
+ ---
2
+ layout: post
3
+ ---
4
+ {% comment -%}
5
+ <!-- some debug stuff -->
6
+ <!-- event: spt:{{site.pgtype}}, lpt:{{layout.pgtype}}<br />
7
+ smt:{{site.mntype}}, lmt:{{layout.mntype}}<br />
8
+ evtype: let:{{layout.evtype}}, pet:{{page.evtype}}<br /> -->
9
+ {%- endcomment -%}
10
+ {%- if page.image %}<meta property="image" href="{{ page.image }}" /></a>{%- endif %}
11
+
12
+ <section property="mainEntity" typeof="{{ layout.evtype | default: page.evtype | default: 'Event' }}">
13
+ {%- if page.image %}
14
+ <a property="image" href="{{ page.image }}" title="bigger"><img src="{{ page.image }}" align="right" alt="" title="Poster for {{ page.title }}" style="max-width: 33%;" /></a>
15
+ {%- endif %}
16
+ {%- if page.description %}
17
+ {%- if page.age %}
18
+ {% capture ageStmt %} Recommended for <span property="typicalAgeRange">{{ page.age }}</span>.{% endcapture %}
19
+ {%- endif %}
20
+ <p property="description">{{ page.description | newline_to_br }}{{ ageStmt }}</p>
21
+ {%- endif %}
22
+ <!-- only if needed
23
+ <meta property="eventStatus" content="http://schema.org/EventRescheduled">
24
+ <meta property="eventStatus" content="http://schema.org/EventCancelled">
25
+ <meta property="eventStatus" content="http://schema.org/EventPostponed">
26
+ <span property="previousStartDate" content="2013-09-14T21:30">(previously scheduled for Sept 14th)</span>
27
+ -->
28
+
29
+
30
+
31
+ <dl>
32
+ {%- if page.website %}
33
+ <dt>Website</dt>
34
+ <dd><a property="url" href="{{ page.website }}" title="{{ page.title}}">{{ page.website }}</a></dd>
35
+ {%- endif %}
36
+ <dt>Host</dt>
37
+ {%- if page.orgURL %}
38
+ <dd property="organizer" typeof="Organization"><a property="url" title="{{ page.organizer }}" href="{{ page.orgURL }}"><span property="name">{{ page.organizer }}</span></a></dd>
39
+ {%- else %}
40
+ <dd property="organizer" typeof="Organization"><span property="name">{{ page.organizer }}</span></dd>
41
+ {%- endif %}
42
+ {%- if page.sponsor %}
43
+ <dt>Sponsor(s)</dt>
44
+ <dd>
45
+ <ul style="padding: 0; list-style: none;"
46
+ {%- assign sponsors = page.sponsor | split: ", " %}
47
+ {%- for spons in sponsors %}
48
+ <li property="sponsor" typeof="Organization"> <span property="name">{{ spons }}</span></li>
49
+ {%- endfor %}
50
+ </ul>
51
+ </dd>
52
+ {%- endif %}
53
+
54
+ <!-- if doing dates with times, need the date/time to be in ISO_8601 format
55
+ <dd property="startDate" content="2019-01-26T08:10:36-08:00">January 26, 2019 at 8:10am PST</dd>
56
+ -->
57
+ {%- if page.endDate -%}
58
+ <dt>Dates</dt>
59
+ {%- capture endday %} to <span property="endDate" content="{{ page.endDate }}">{{ page.endDate | date: "%b %d, %Y" }}</span>{%- endcapture -%}
60
+ {%- else %}
61
+ <dt>Date</dt>
62
+ {%- endif %}
63
+ <dd><span property="startDate" content="{{ page.startDate }}">{{ page.startDate | date: "%b %d, %Y" }}</span>{{ endday }}</dd>
64
+ <dt>Where</dt>
65
+ <dd property="location" typeof="Place">
66
+ {%- if page.venue -%}
67
+ {%- if page.venueURL %}
68
+ <span property="name" content="{{ page.venue }}"><a property="url" href="{{ page.venueURL }}">{{ page.venue }}</a></span>
69
+ {%- else %}
70
+ <span property="name">{{ page.venue }}</span>
71
+ {%- endif -%}
72
+ {%- endif %}
73
+ <div property="address" typeof="PostalAddress">
74
+ <span property="streetAddress">{{ page.stAddress | newline_to_br }}</span><br>
75
+ <span property="addressLocality">{{ page.locality }}</span>,
76
+ <span property="addressRegion">{{ page.region }}</span>,
77
+ {%- if page.postal %}
78
+ <span property="postalCode">{{ page.postal }}</span>,
79
+ {%- endif %}
80
+ <span property="addressCountry">{{ page.country }}</span>
81
+ </div>
82
+ {%- if page.mappic or page.maplink %}
83
+ <span property="hasMap">
84
+ {%- if page.mappic %}
85
+ <link itemprop="mapType" href="http://schema.org/VenueMap" />
86
+ <a property="map" href="{{ page.mappic }}">Map</a><br>
87
+ {%- endif %}
88
+ {%- if page.maplink %}
89
+ <a property="url" href="{{ page.maplink }}">click here for directions</a>
90
+ {%- endif %}
91
+ </span>
92
+ {%- endif %}
93
+ </dd>
94
+ {%- if page.langs %}
95
+ <dt>Language(s)</dt>
96
+ <dd property="inLanguage">
97
+ {%- assign languages = page.langs | split: ", " %}
98
+ {%- for lang in languages %}
99
+ {%- unless forloop.first == true %}, {% endunless -%}
100
+ <span property="name">{{ lang }}</span>
101
+ {%- endfor -%}
102
+ </dd>
103
+ {%- endif %}
104
+ {%- if page.offers %}
105
+ <dt>Price</dt>
106
+ <dd property="offers" typeof="http://schema.org/Offer">
107
+ <span property="price" content="{{ page.price }}">
108
+ {%- if page.currency %}
109
+ <span property="priceCurrency" content="{{ page.currencyCode }}">{{ page.currency }}</span>
110
+ {%- endif %}
111
+ {%- if page.price %}
112
+ {{ page.price }}
113
+ {%- else %}
114
+ {{ page.offers }}
115
+ {%- endif %}
116
+ </span>
117
+ </dd>
118
+ {%- endif %}
119
+ <!--
120
+ <dd><ul>
121
+ <li property="offers" typeof="http://schema.org/Offer">
122
+ <a property="url" href="example.com/registration.html" title="registration form">Register here</a>
123
+ <span property="validFrom" content="2015-10-01T00:01">Oct 1, 2015</span> –
124
+ <span property="validThrough" content="2016-01-31T23:59">Jan 31, 2016</span> –
125
+ <div class="event-price">
126
+ <meta property="priceCurrency" content="USD" />$
127
+ <meta property="price" content="13.00" />13.00
128
+ </div>
129
+ </li>
130
+ <li property="offers" typeof="http://schema.org/Offer">
131
+ <a property="url" href="example.com/registration.html" title="registration form">Register here</a>
132
+ <span property="validFrom" content="2016-02-01T00:01">Feb 1, 2016</span> –
133
+ <span property="validThrough" content="2016-06-14T23:59">June 14, 2016</span> –
134
+ <span property="priceCurrency" content="USD">$</span><span property="price" content="1000.00">1,000.00</span>
135
+ </li>
136
+ </ul></dd> -->
137
+ </dl>
138
+ <!-- <p property="description">
139
+ yatta yatta event
140
+ </p> -->
141
+ </section>
142
+ </main>
143
+ </section>
@@ -0,0 +1,21 @@
1
+ ---
2
+ title: Posts listed by Category
3
+ layout: default
4
+ # this file would be used with catag-old.html in _includes and expects to be in the blogPath directory
5
+ ---
6
+ <!-- Jekyll makes the categories available to us at site.categories. Iterating over site.categories on a page gives us another array with two items, the first item is the name of the category and the second item is an array of posts in that category. -->
7
+
8
+ {% assign sortedCats = site.categories | sort %}
9
+ {% for category in sortedCats %}
10
+ {% assign cat = category[0] %}
11
+ {% unless cat == "blog" %}
12
+ <section id="{{ cat }}">
13
+ <h2>{{ cat }}</h2>
14
+ <ul>
15
+ {% for post in category[1] %}
16
+ <li><a href="{{ post.url }}">{{ post.title }}</a></li>
17
+ {% endfor %}
18
+ </ul>
19
+ </section>
20
+ {% endunless %}
21
+ {% endfor %}
data/assets/tag.html ADDED
@@ -0,0 +1,17 @@
1
+ ---
2
+ title: Posts listed by Tag
3
+ layout: default
4
+ # this file would be used with catag-old.html in _includes and expects to be in the blogPath directory
5
+ ---
6
+ {% assign sortedTags = site.tags | sort %}
7
+ {% for tag in sortedTags %}
8
+ {% assign t = tag[0] %}
9
+ <section id="{{ t }}">
10
+ <h2>{{ t }}</h2>
11
+ <ul>
12
+ {% for post in tag[1] %}
13
+ <li><a href="{{ post.url }}">{{ post.title }}</a></li>
14
+ {% endfor %}
15
+ </ul>
16
+ </section>
17
+ {% endfor %}
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: structrdfal
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.0
4
+ version: 0.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Carol Wang
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2019-03-08 00:00:00.000000000 Z
11
+ date: 2019-03-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -90,6 +90,7 @@ files:
90
90
  - _layouts/contactPage.html
91
91
  - _layouts/default.html
92
92
  - _layouts/event.html
93
+ - _layouts/eventpost.html
93
94
  - _layouts/page.html
94
95
  - _layouts/post.html
95
96
  - _layouts/sitehome.html
@@ -111,6 +112,7 @@ files:
111
112
  - assets/.htaccess
112
113
  - assets/404.html
113
114
  - assets/browserconfig.xml
115
+ - assets/category.html
114
116
  - assets/contactform.html
115
117
  - assets/eventform.html
116
118
  - assets/favicon.ico
@@ -127,9 +129,10 @@ files:
127
129
  - assets/styles/form.css
128
130
  - assets/styles/normalize.css
129
131
  - assets/styles/structRDFaL.css
132
+ - assets/tag.html
130
133
  - assets/tile-wide.png
131
134
  - assets/tile.png
132
- homepage: http://example.com/
135
+ homepage: http://struct.arghc.ca/
133
136
  licenses:
134
137
  - MIT
135
138
  metadata: {}