|
2 | 2 | layout: base |
3 | 3 | --- |
4 | 4 | <article class="post h-entry" itemscope itemtype="http://schema.org/BlogPosting"> |
5 | | - <div class="wp-block-group alignfull has-surface-background-color has-background has-global-padding is-layout-constrained wp-block-group-is-layout-constrained" style="padding-top:var(--wp--preset--spacing--xx-large);padding-bottom:var(--wp--preset--spacing--xx-large)"> |
6 | | - <h1 class="has-text-align-center wp-block-post-title">{{ page.title | escape }}</h1> |
| 5 | + <header class="post-header"> |
| 6 | + <h1>{{ page.title | escape }}</h1> |
7 | 7 |
|
8 | | - <div class="wp-block-group has-neutral-color has-text-color is-content-justification-center is-nowrap is-layout-flex wp-container-core-group-is-layout-5 wp-block-group-is-layout-flex"> |
9 | | - <div class="wp-block-post-author"><div class="wp-block-post-author__content"><p class="wp-block-post-author__name"><a href="{{ site.data["authors"][page.author].url }}">{{ site.data["authors"][page.author].name }}</a></p></div></div> |
| 8 | + <div class="post-attributes"> |
| 9 | + <div class="post-author"><a href="{{ site.data["authors"][page.author].url }}">{{ site.data["authors"][page.author].name }}</a></div> |
10 | 10 | <p>·</p> |
11 | | - <div class="wp-block-post-date"> |
| 11 | + <div class="post-date"> |
12 | 12 | {%- assign date_format = site.minima.date_format | default: "%b %-d, %Y" -%} |
13 | 13 | {% assign pdate = page.date | date_to_xmlschema %} |
14 | | - {%- if page.modified_date %}<span class="meta-label">Published:</span>{% endif %} |
15 | | - <time class="dt-published" datetime="{{ pdate }}" itemprop="datePublished"> |
16 | | - {{ pdate | date: date_format }} |
17 | | - </time> |
| 14 | + <time class="dt-published" datetime="{{ pdate }}" itemprop="datePublished">{{ pdate | date: date_format }}</time> |
18 | 15 | {%- if page.modified_date -%} |
19 | | - <p>·</p> |
20 | | - <span class="meta-label">Updated:</span> |
| 16 | + <span class="meta-label">(updated: |
21 | 17 | {%- assign mdate = page.modified_date | date_to_xmlschema %} |
22 | | - <time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified"> |
23 | | - {{ mdate | date: date_format }} |
24 | | - </time> |
25 | | - {%- endif -%} |
| 18 | + <time class="dt-modified" datetime="{{ mdate }}" itemprop="dateModified">{{ mdate | date: date_format }}</time>)</span> |
| 19 | + {%- endif -%} |
26 | 20 | </div> |
27 | 21 | <p>·</p> |
28 | 22 | {% for category in page.categories %} |
29 | | - <div class="taxonomy-category wp-block-post-terms"><a href="{{ site.url }}/{{ category | downcase }}/" rel="tag">{{category}}</a></div> |
| 23 | + <div class="post-category"><a href="{{ site.url }}/{{ category | downcase }}/" rel="tag">{{category}}</a></div> |
30 | 24 | {% if forloop.last == false %}<p>·</p>{% endif %} |
31 | 25 | {% endfor %} |
32 | 26 | </div> |
33 | | - </div> |
| 27 | + </header> |
34 | 28 | {% include featured_image.html %} |
35 | | - <div class="entry-content wp-block-post-content is-layout-flow wp-block-post-content-is-layout-flow"> |
| 29 | + <div class="post-content e-content" itemprop="articleBody"> |
36 | 30 | {{ content }} |
37 | 31 | </div> |
38 | | - <div class="sharedaddy sd-sharing-enabled"> |
39 | | - <div class="sd-sharing"> |
40 | | - <h3 class="sd-title">Tags:</h3> |
41 | | - <div class="taxonomy-post_tag is-style-swt-post-terms-pill wp-block-post-terms"> |
| 32 | + <footer class="post-footer"> |
| 33 | + <div class="post-tags"> |
| 34 | + <h3>Tags:</h3> |
| 35 | + <div class="post-tag-list"> |
42 | 36 | {% for tag in page.tags %} |
43 | | - <a href="{{ site.url }}/tag/{{ tag | slugify }}" rel="tag">{{ tag }}</a>{% if forloop.last == false %}<span class="wp-block-post-terms__separator">, </span>{% endif %} |
| 37 | + <a href="{{ site.url }}/tag/{{ tag | slugify }}" rel="tag">{{ tag }}</a>{% if forloop.last == false %}<span class="separator">, </span>{% endif %} |
44 | 38 | {% endfor %} |
45 | 39 | </div> |
46 | 40 |
|
47 | 41 | </div> |
48 | | - <div class="robots-nocontent sd-block sd-social sd-social-icon sd-sharing"> |
49 | | - <h3 class="sd-title">Share this:</h3> |
50 | | - <div class="sd-content"> |
| 42 | + <div class="post-sharing"> |
| 43 | + <h3>Share this:</h3> |
| 44 | + <div class="post-sharing-list"> |
51 | 45 | {% share_group name='default' icon_size='medium' %} |
52 | 46 | </div> |
53 | 47 | </div> |
54 | | - </div> |
| 48 | + </footer> |
55 | 49 |
|
56 | 50 | {%- if site.disqus.shortname -%} |
57 | 51 | {%- include disqus_comments.html -%} |
58 | 52 | {%- endif -%} |
59 | 53 |
|
60 | 54 | <a class="u-url" href="{{ page.url | relative_url }}" hidden></a> |
61 | | - <hr class="wp-block-separator has-text-color has-outline-color has-alpha-channel-opacity has-outline-background-color has-background is-style-wide"/> |
| 55 | + <hr /> |
62 | 56 | </article> |
0 commit comments