Skip to content
Snippets Groups Projects
Commit c82431d8 authored by Hugo Trentesaux's avatar Hugo Trentesaux
Browse files

[fix] prise en compte retours sur forum

parent b5f5aba4
No related branches found
No related tags found
No related merge requests found
Pipeline #9948 passed
......@@ -15,6 +15,16 @@ footer
a.w3-button
background-color: #CB8802
.duniter-download-button
display: inline-block
background-color: #FABB37
color: black
padding: 0.5em 1em
margin-top: 1em
.duniter-download-button:hover
background-color: #DFA630
color: white
@font-face
font-family: Ubuntu-Regular
src: url(/fonts/Ubuntu/Ubuntu-R.ttf)
......
......@@ -9,7 +9,10 @@
<div class="w3-panel kkk-logotitle">
<img alt="img" src="/img/duniter.png"/>
<h1>Moteur de blockchain <br> pour la monnaie libre Ğ1</h1>
<div>
<h1>Moteur de blockchain <br> pour la monnaie libre Ğ1</h1>
<a class="w3-round w3-large duniter-download-button" href="https://git.duniter.org/nodes/typescript/duniter/-/releases"><i class="fa fa-cloud-download"></i> Télécharger Duniter</a>
</div>
</div>
<div class="w3-panel kkk-textimage">
......
<nav class="w3-bar w3-large">
<a href="/" class="w3-bar-item w3-button w3-mobile {% if current_path %}{% if current_path == "/" %}active{% endif %}{% endif %}"><img alt="" class="icon" src="/img/duniter.png"/> Duniter</a>
<a href="/" class="w3-bar-item w3-button {% if current_path %}{% if current_path == "/" %}active{% endif %}{% endif %}"><img alt="" class="icon" src="/img/duniter.png"/> Duniter</a>
{% set index = get_section(path="_index.md") %}
{% for p in index.pages %}
{% if not p.extra.hide %}
<a href="{{ p.permalink }}" class="w3-bar-item w3-button w3-mobile
<a href="{{ p.permalink }}" class="w3-bar-item w3-button
{% if current_path %}{% if current_path == p.path %}active{% endif %}{% endif %}">
{{p.title}}
</a>
......@@ -12,17 +12,17 @@
{% endfor %}
<div class="w3-dropdown-hover w3-mobile w3-right">
<div class="w3-dropdown-hover w3-dropdown-click w3-right">
<button class="w3-button">Liens <i class="fa fa-caret-down"></i></button>
<div class="w3-dropdown-content w3-bar-block w3-dark-grey">
<a href="https://git.duniter.org/" class="w3-bar-item w3-button w3-mobile"><i class="fa fa-gitlab"></i> GitLab</a>
<a href="https://forum.duniter.org/" class="w3-bar-item w3-button w3-mobile"><img alt="d" class="icon" src="https://simpleicons.org/icons/discourse.svg"/> Forum</a>
<a href="https://git.duniter.org/" class="w3-bar-item w3-button"><i class="fa fa-gitlab"></i> GitLab</a>
<a href="https://forum.duniter.org/" class="w3-bar-item w3-button"><img alt="d" class="icon" src="https://simpleicons.org/icons/discourse.svg"/> Forum</a>
</div>
</div>
{% for s in index.subsections %}{% set subsection = get_section(path=s) %}
{% if not subsection.extra.hide %}
<a href="{{ subsection.permalink }}" class="w3-bar-item w3-button w3-mobile w3-right
<a href="{{ subsection.permalink }}" class="w3-bar-item w3-button w3-right
{% if current_path %}{% if current_path is starting_with(subsection.path) %}active{% endif %}{% endif %}">
{{subsection.title}}
</a>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment