-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpermalink.html
47 lines (37 loc) · 1.16 KB
/
permalink.html
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
---
layout: default
title: Permalink
cover: cover.jpg
namespace: team
permalink: /squadra/
permalink_en: /team/
permalink_es: /equipo/
---
<div class="content" id="home">
<div id="sidebar-button">
<img src="/images/sidebar-button.png">
</div>
<div id="post-info">
<div id="cover-photo-container">
<img id="cover-photo" src="/images/{{ page.cover }}">
</div>
<div id="info-container">
<h1 id="title">{{ page.title }}</h1>
</div>
</div>
<div class="post">
<div align="right">
<!-- Adds links to other languages on the post -->
{% for lang in site.languages %}
{% unless site.lang == lang %}
<a href="{% tl {{ page.namespace }} {{ lang }} %}" >{% t langs.{{ lang }} %}</a>
{% assign next = forloop.index | plus: 1 %}
{% if forloop.last != true and site.languages[forloop.index] != site.lang or site.languages[forloop.index] == site.lang and next < forloop.length %}
<span class="separator"> • </span>
{% endif %}
{% endunless %}
{% endfor %}
</div>
{% tf permalink.md %}
</div>
</div>