forked from pullrequest/pullrequest.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtags.html
More file actions
27 lines (27 loc) · 639 Bytes
/
tags.html
File metadata and controls
27 lines (27 loc) · 639 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
---
layout: default
title: Pull Request
---
<section id="tags">
<h1>Tags</h1>
<header>
<ul class="tags">
{% for tag in site.tags %}
<li id="tag-{{ tag[0] }}">
<a href="tags.html#{{ tag[0] }}" title="Voir les posts ayant le tag {{ tag[0] }}">{{ tag[0] }}</a>
</li>
{% endfor %}
</ul>
</header>
<ul id="tag-list">
{% for tag in site.tags %}
<li id="{{ tag[0] }}">{{ tag[0] }}:
<ul>
{% for post in tag[1] %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</li>
{% endfor %}
</ul>
</section>