git
This commit is contained in:
parent
c214c74308
commit
b58d3ccdd5
2 changed files with 12 additions and 0 deletions
|
@ -40,6 +40,11 @@ SITES = (
|
|||
('tilde.link', 'https://tilde.link'),
|
||||
)
|
||||
|
||||
GIT = (
|
||||
('tildegit.org', 'https://tildegit.org/marc'),
|
||||
('framagit.org', 'https://framagit.org/marc-beninca'),
|
||||
)
|
||||
|
||||
SOCIAL = (
|
||||
('linkedin', 'https://www.linkedin.com/in/marc-beninca'),
|
||||
)
|
||||
|
|
|
@ -20,6 +20,13 @@
|
|||
<li><a href="{{ SITEURL }}/{{ FEED_RSS }}" rel="alternate">rss</a></li>
|
||||
{% endif %}
|
||||
|
||||
{% if GIT %}
|
||||
<li class="nav-header"><h4><i class="fab fa-git-alt"></i> git</h4></li>
|
||||
{% for name, link in GIT %}
|
||||
<li><a href="{{ link }}">{{ name }}</a></li>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
{% if SOCIAL %}
|
||||
<li class="nav-header"><h4><i class="fas fa-user-plus"></i> social</h4></li>
|
||||
{% for name, link in SOCIAL %}
|
||||
|
|
Loading…
Reference in a new issue