PySimpleGUI/mkdocs_ivory/repo.html

19 lines
785 B
HTML
Raw Normal View History

2021-09-27 18:00:40 +00:00
<div class="repo">
{%- if config.repo_name %}
<div class="link">
{%- if config.repo_name == 'GitHub' %}
<a href="{{ config.repo_url }}" class="fa fa-github"> GitHub</a>
{%- elif config.repo_name == 'Bitbucket' %}
<a href="{{ config.repo_url }}" class="icon icon-bitbucket"> BitBucket</a>
{%- elif config.repo_name == 'GitLab' %}
<a href="{{ config.repo_url }}" class="icon icon-gitlab"> GitLab</a>
{%- endif %}
</div>
{%- endif %}
{%- if page.previous_page %}
<div class="previous"><a href="{{ page.previous_page.url|url }}">&laquo; Previous</a></div>
{%- endif %}
{%- if page.next_page %}
<div class="next"><a href="{{ page.next_page.url|url }}">Next &raquo;</a></div>
{%- endif %}
</div>