mirror of
https://github.com/monero-project/monero-site.git
synced 2025-01-18 23:53:42 +02:00
fixed language page for very low-res devices, fixed blog by tag title
This commit is contained in:
parent
eb584f2e5d
commit
477bd674fb
@ -6,6 +6,8 @@
|
|||||||
<title>
|
<title>
|
||||||
{% if page.entry %}
|
{% if page.entry %}
|
||||||
{{ page.entry }} | {% t global.wiki %} | {% t index.page_title %}
|
{{ page.entry }} | {% t global.wiki %} | {% t index.page_title %}
|
||||||
|
{% elsif tag %}
|
||||||
|
{% t global.tags %}: {{ tag.name }} | {% t index.page_title %}
|
||||||
{% elsif page.title %}
|
{% elsif page.title %}
|
||||||
{{ page.title }} | {% t index.page_title %}
|
{{ page.title }} | {% t index.page_title %}
|
||||||
{% else %}
|
{% else %}
|
||||||
|
@ -1,30 +1,41 @@
|
|||||||
---
|
<!DOCTYPE html>
|
||||||
layout: default
|
<html>
|
||||||
---
|
{% assign filename = page.path | remove: '.md' | split: '/' | last %}
|
||||||
|
{% for data_tag in site.data.tags %}
|
||||||
{% assign filename = page.path | remove: '.md' | split: '/' | last %}
|
|
||||||
|
|
||||||
{% for data_tag in site.data.tags %}
|
|
||||||
{% if data_tag.slug == filename %}
|
{% if data_tag.slug == filename %}
|
||||||
{% assign tag = data_tag %}
|
{% assign tag = data_tag %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
<div class="page-title">
|
{% include head.html %}
|
||||||
<!-- Icon is based on work by Sergiu Bagrin (http://pixelkit.com) and is licensed under Creative Commons BY 3.0 -->
|
|
||||||
<img src="//static.getmonero.org/images/icon_tags.svg" class="title-icon"><h2 class="inline">{% t tags.all %}: <span class="kicks">{{ tag.name }}</span></h2>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div>
|
<body>
|
||||||
{% if site.tags[tag.slug] %}
|
|
||||||
{% for post in site.tags[tag.slug] %}
|
|
||||||
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
|
||||||
<blockquote>
|
|
||||||
{{ post.summary }}
|
|
||||||
</blockquote>
|
|
||||||
{% endfor %}
|
|
||||||
{% else %}
|
|
||||||
<h3>{% t tags.notags %}</h3>
|
|
||||||
{% endif %}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
|
{% include header.html %}
|
||||||
|
|
||||||
|
<div class="container main-content">
|
||||||
|
|
||||||
|
<div class="page-title">
|
||||||
|
<!-- Icon is based on work by Sergiu Bagrin (http://pixelkit.com) and is licensed under Creative Commons BY 3.0 -->
|
||||||
|
<img src="//static.getmonero.org/images/icon_tags.svg" class="title-icon"><h2 class="inline">{% t tags.all %}: <span class="kicks">{{ tag.name }}</span></h2>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div>
|
||||||
|
{% if site.tags[tag.slug] %}
|
||||||
|
{% for post in site.tags[tag.slug] %}
|
||||||
|
<h3><a href="{{ post.url }}">{{ post.title }}</a></h3>
|
||||||
|
<blockquote>
|
||||||
|
{{ post.summary }}
|
||||||
|
</blockquote>
|
||||||
|
{% endfor %}
|
||||||
|
{% else %}
|
||||||
|
<h3>{% t tags.notags %}</h3>
|
||||||
|
{% endif %}
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
{% include footer.html %}
|
||||||
|
|
||||||
|
</body>
|
||||||
|
|
||||||
|
</html>
|
||||||
|
@ -5,6 +5,7 @@ global:
|
|||||||
copyright: Copyright
|
copyright: Copyright
|
||||||
monero_project: The Monero Project
|
monero_project: The Monero Project
|
||||||
wiki: Moneropedia
|
wiki: Moneropedia
|
||||||
|
tags: Articles By Tag
|
||||||
terms: Terms
|
terms: Terms
|
||||||
privacy: Privacy
|
privacy: Privacy
|
||||||
copyright: Copyright
|
copyright: Copyright
|
||||||
|
@ -35,7 +35,7 @@ if (isset($_COOKIE["MONERO_LANG"]))
|
|||||||
<body class="body-language">
|
<body class="body-language">
|
||||||
<!-- Static navbar -->
|
<!-- Static navbar -->
|
||||||
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
|
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
|
||||||
<div class="container">
|
<div class="container" style="padding-bottom: 0px;">
|
||||||
<div class="navbar-header">
|
<div class="navbar-header">
|
||||||
<a class="navbar-brand" href="/"><img class="logo" src="//static.getmonero.org/images/logo.svg"></a>
|
<a class="navbar-brand" href="/"><img class="logo" src="//static.getmonero.org/images/logo.svg"></a>
|
||||||
</div>
|
</div>
|
||||||
|
Loading…
Reference in New Issue
Block a user