A website with materials for learning ancient languages.
https://glossa.info/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
698 B
19 lines
698 B
|
6 years ago
|
<footer class="site-footer">
|
||
|
|
<div style="text-align:center;" class="container">
|
||
|
|
{% if page.prev %}
|
||
|
|
{% assign prev_link = page.prev | split: '@' %}
|
||
|
|
<a href="{{ site.baseurl }}/lessons/{{ page.language }}/{{ prev_link[1] }}" style="float:left;">← {{ prev_link[0] }}</a>
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
{% if page.prev or page.next %}
|
||
|
|
<a href="{{ site.baseurl }}/lessons/{{ page.language }}/">Содержание</a>
|
||
|
|
{% endif %}
|
||
|
|
|
||
|
|
{% if page.next %}
|
||
|
|
{% assign prev_link = page.next | split: '@' %}
|
||
|
|
<a href="{{ site.baseurl }}/lessons/{{ page.language }}/{{ prev_link[1] }}" style="float:right;">{{ prev_link[0] }} →</a>
|
||
|
|
{% endif %}
|
||
|
|
</div>
|
||
|
|
<br />
|
||
|
|
</footer>
|