Update to latest jekyll
This commit is contained in:
@ -5,10 +5,9 @@
|
||||
{% include meta.html %}
|
||||
|
||||
<link href="/stylesheets/screen.css" media="screen, projection" rel="stylesheet" type="text/css">
|
||||
<link href='http://fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
|
||||
<link href='//fonts.googleapis.com/css?family=PT+Serif:regular,italic,bold,bolditalic' rel='stylesheet' type='text/css'>
|
||||
<link href="//netdna.bootstrapcdn.com/font-awesome/latest/css/font-awesome.css" rel="stylesheet">
|
||||
|
||||
<link rel="shortcut icon" href="/favicon.ico" >
|
||||
<link href="/atom.xml" rel="alternate" title="{{site.title}}" type="application/atom+xml">
|
||||
</head>
|
||||
<body>
|
||||
|
@ -2,12 +2,12 @@
|
||||
layout: page
|
||||
title: Posts tagged "{{ page.tag }}"
|
||||
---
|
||||
{% for post in site.tags[page.tag] reverse %}
|
||||
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
||||
{% unless year == this_year %}
|
||||
{% assign year = this_year %}
|
||||
<h3>{{ year }}</h3>
|
||||
{% endunless %}
|
||||
{% include article_list.html %}
|
||||
{% for post in site.tags[page.tag] %}
|
||||
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
||||
{% unless year == this_year %}
|
||||
{% assign year = this_year %}
|
||||
<h3>{{ year }}</h3>
|
||||
{% endunless %}
|
||||
{% include article_list.html %}
|
||||
{% endfor %}
|
||||
<p><i class="fa fa-rss"></i> <a href="/tag/{{ page.tag | replace:' ','-' }}/atom.xml">Subscribe</a></p>
|
||||
|
Reference in New Issue
Block a user