Added Bluesky link where the Twitter link used to be.
This commit is contained in:
parent
eb88cc0999
commit
312be0e7fe
4 changed files with 23 additions and 10 deletions
templates/_layout
|
@ -1,18 +1,17 @@
|
|||
<footer class="footer">
|
||||
<div class="footer__background"></div>
|
||||
<div class="footer__wrapper">
|
||||
{% autoescape false %}
|
||||
<div class="footer__copyright">
|
||||
<a href="https://flash.moe" target="_blank" rel="noreferrer noopener" class="footer__link">flashwave</a>
|
||||
<a href="https://flash.moe" target="_blank" rel="noopener" class="footer__link">flashwave</a>
|
||||
2013-{{ ''|date('Y') }} /
|
||||
{% set git_branch = git_branch() %}
|
||||
{% if git_branch != 'HEAD' %}
|
||||
<a href="https://patchii.net/flashii/misuzu/src/branch/{{ git_branch }}" target="_blank" rel="noreferrer noopener" class="footer__link">{{ git_branch }}</a>
|
||||
<a href="https://patchii.net/flashii/misuzu/src/branch/{{ git_branch }}" target="_blank" rel="noopener" class="footer__link">{{ git_branch }}</a>
|
||||
{% else %}
|
||||
{% set git_tag = git_tag() %}
|
||||
<a href="https://patchii.net/flashii/misuzu/src/tag/{{ git_tag }}" target="_blank" rel="noreferrer noopener" class="footer__link">{{ git_tag }}</a>
|
||||
<a href="https://patchii.net/flashii/misuzu/src/tag/{{ git_tag }}" target="_blank" rel="noopener" class="footer__link">{{ git_tag }}</a>
|
||||
{% endif %}
|
||||
# <a href="https://patchii.net/flashii/misuzu/commit/{{ git_commit_hash(true) }}" target="_blank" rel="noreferrer noopener" class="footer__link">{{ git_commit_hash() }}</a>
|
||||
# <a href="https://patchii.net/flashii/misuzu/commit/{{ git_commit_hash(true) }}" target="_blank" rel="noopener" class="footer__link">{{ git_commit_hash() }}</a>
|
||||
{% if globals.display_timings_info %}
|
||||
/ Index {{ ndx_version() }}
|
||||
/ {{ sql_query_count()|number_format }} queries
|
||||
|
@ -21,6 +20,5 @@
|
|||
/ {{ startup_time()|number_format(5) }} total
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endautoescape %}
|
||||
</div>
|
||||
</footer>
|
||||
|
|
|
@ -33,14 +33,14 @@
|
|||
<div class="header__desktop__menus">
|
||||
{% for item in header_menu %}
|
||||
<div class="header__desktop__menu">
|
||||
<a href="{{ item.url }}" class="header__desktop__link header__desktop__menu__link">{{ item.title }}</a>
|
||||
<a href="{{ item.url }}" class="header__desktop__link header__desktop__menu__link"{% if item.url[:1] != '/' or item.url[:2] == '//' %} target="_blank" rel="noopener"{% endif %}>{{ item.title }}</a>
|
||||
|
||||
{% if item.menu is defined and item.menu is iterable %}
|
||||
<div class="header__desktop__submenu">
|
||||
<div class="header__desktop__submenu__background"></div>
|
||||
<div class="header__desktop__submenu__content">
|
||||
{% for subitem in item.menu %}
|
||||
<a href="{{ subitem.url }}" class="header__desktop__link header__desktop__submenu__link">{{ subitem.title }}</a>
|
||||
<a href="{{ subitem.url }}" class="header__desktop__link header__desktop__submenu__link"{% if subitem.url[:1] != '/' or subitem.url[:2] == '//' %} target="_blank" rel="noopener"{% endif %}>{{ subitem.title }}</a>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
@ -103,11 +103,11 @@
|
|||
|
||||
<div class="header__mobile__navigation">
|
||||
{% for item in header_menu %}
|
||||
<a href="{{ item.url }}" class="header__mobile__link header__mobile__link--primary">{{ item.title }}</a>
|
||||
<a href="{{ item.url }}" class="header__mobile__link header__mobile__link--primary"{% if item.url[:1] != '/' or item.url[:2] == '//' %} target="_blank" rel="noopener"{% endif %}>{{ item.title }}</a>
|
||||
|
||||
{% if item.menu is defined and item.menu is iterable %}
|
||||
{% for subitem in item.menu %}
|
||||
<a href="{{ subitem.url }}" class="header__mobile__link">{{ subitem.title }}</a>
|
||||
<a href="{{ subitem.url }}" class="header__mobile__link"{% if subitem.url[:1] != '/' or subitem.url[:2] == '//' %} target="_blank" rel="noopener"{% endif %}>{{ subitem.title }}</a>
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue