archives.html 1.5 KB
Newer Older
L
Liberxue 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
---
---
<div class="main-content archive-page clearfix">
{% for post in site.posts %}
    {% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
    {% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
    {% if forloop.first %}
  	<div class="categorys-item">
	<div class="categorys-title" id="{{ this_year }}">
			{{ this_year }}
		</div>
   <div class="post-lists">
	<div class="post-lists-body">
    {% endif %}
			<div class="post-list-item">
					<div class="post-list-item-container">
L
Liberxue 已提交
17 18 19
					<div class="liberxue-title">
					{{ post.category }}
				</div>
L
Liberxue 已提交
20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
						<div class="item-label">
							<div class="item-title">
								<a href="{{ site.url }}{{ post.url }}" title="访问 {{  post.title }}">{{ post.title }}</a>
							</div>
							<div class="item-meta clearfix">
								<div class="item-meta-date">
									{{ post.date | date: "%F %H:%M:%S "}}&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; <a href="/tags#{{ post.category }}"  data-hover="{{ post.category }}">{{ post.category }} </a>  
								</div>
							</div>
						</div>
					</div>
				</div>

    {% if forloop.last %}
     </div>
	</div>
   	</div>
    {% else %}
        {% if this_year != next_year %}
            </div>
	</div>
  	</div>
     	<div class="categorys-item">
			 	<div class="categorys-title" id="{{ next_year }}">
			{{next_year}}
		</div>
        <div class="post-lists">
			<div class="post-lists-body">
        {% endif %}
    {% endif %}
{% endfor %}