-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy patharchive.html
More file actions
17 lines (17 loc) · 821 Bytes
/
archive.html
File metadata and controls
17 lines (17 loc) · 821 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
---
layout: default
---
<section id="articales" class="type-tag">
{% for post in site.posts -%}
<article class="post" id="{{ post.id }}" itemscope itemType="http://schema.org/TechArticle" itemid="{{ post.url | absolute_url }} ">
<meta itemprop="proficiencyLevel" content="Beginner" />
<link itemprop="publisher" href="https://lejenome.tik.tn/resume" rel="author" />
<hgroup>
<h3 class="post-date"><time datetime="{{ post.date | date: "%FT%TZ" }}" itemprop="datePublished">{{ post.date | date: "%Y/%m/%d" }}</time></h3>
<h1 class="post-title" itemprop="name" itemprop="headline"><a href="{{ post.url | relative_url }}" class="post-link" itemprop="url">{{post.title}}</a></h1>
</hgroup>
</article>
{%- endfor %}
</section>
<nav id="posts-nav">
</nav>