Skip to content

Commit

Permalink
Merge pull request barryclark#13 from thomascchen/small-fixes
Browse files Browse the repository at this point in the history
Fix typo and remove extraneous footer content in post layout
  • Loading branch information
ronv authored Jun 30, 2020
2 parents 7bafd92 + e85157e commit 17a06b4
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 9 deletions.
8 changes: 0 additions & 8 deletions _layouts/post.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,16 +5,8 @@
<section class="post">
<h2>{{ page.title }}</h2>
{{ content }}


<span class="meta"><time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %-d, %Y" }}</time> &middot; {% for tag in page.tags %}
<a href="/tag/{{tag}}">{{tag}}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}</span>



<!--<span class="meta"><time datetime="{{ page.date | date_to_xmlschema }}">{{ page.date | date: "%B %-d, %Y" }}</time> &middot; {% for tag in page.tags %}
<a class="post" href="/tag/{{tag}}">{{tag}}</a>{% unless forloop.last %}, {% endunless %}{% endfor %}</span>
-->
</section>


2 changes: 1 addition & 1 deletion search.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ layout: null
"category" : "{{post.categories | join: ', '}}",
"tags" : "{{ post.tags | join: ', ' }}",
"date" : "{{ post.date }}",
"discription" : "{{post.description | strip_html | strip_newlines | escape }}"
"description" : "{{post.description | strip_html | strip_newlines | escape }}"

} {% unless forloop.last %},{% endunless %}
{% endfor %}
Expand Down

0 comments on commit 17a06b4

Please sign in to comment.