Add .article-header and .article-actions classes to view.html

This commit is contained in:
Yusur 2023-04-06 22:10:55 +02:00
parent 191e235137
commit 63a2b60f1d
6 changed files with 29 additions and 14 deletions

View file

@ -13,6 +13,7 @@
"last-changed": "Last changed",
"page-id": "Page ID",
"action-edit": "Edit",
"action-view-source": "View source",
"action-history": "History",
"tags": "Tags",
"old-revision-notice": "Showing an old revision of the page as of",
@ -58,6 +59,8 @@
"not-logged-in": "Not logged in",
"owner": "Owner",
"page-created": "Page created",
"write-a-comment": "Write a comment…"
"write-a-comment": "Write a comment…",
"input-tags": "Tags (comma separated)",
"no-tags": "No tags"
}
}

View file

@ -13,6 +13,7 @@
"last-changed": "Ultima modifica",
"page-id": "ID pagina",
"action-edit": "Modifica",
"action-view-source": "Visualizza sorgente",
"action-history": "Cronologia",
"tags": "Etichette",
"old-revision-notice": "\u00c8 mostrata una revisione vecchia della pagina, risalente al",
@ -48,6 +49,8 @@
"revision-count-per-page": "Media di revisioni per pagina",
"remember-me-for": "Ricordami per",
"owner": "Proprietario",
"write-a-comment": "Scrivi un commento…"
"write-a-comment": "Scrivi un commento…",
"input-tags": "Etichette (separate da virgola)",
"no-tags": "Nessuna etichetta"
}
}

View file

@ -33,6 +33,7 @@ body{font-family:sans-serif;background-color:var(--bg-main); color: var(--fg-mai
.header ul > li{display:inline-block;padding-right:1em}
/* content styles */
.article-header {text-align: center;}
#firstHeading {font-family:sans-serif; text-align: center;font-size:3em; font-weight: normal}
.inner-content{font-family:serif; margin: 1.7em auto; max-width: 1280px; line-height: 1.9; color: var(--fg-main)}
.inner-content em,.inner-content strong{color: var(--fg-sharp)}

View file

@ -57,8 +57,8 @@
<textarea name="text" class="text-input" {% if pl_readonly %}disabled=""{% endif %}>{{ pl_text }}</textarea>
</div>
<div>
<label for="tags">Tags (comma separated):</label>
<input type="text" name="tags" class="tags-input" placeholder="No tags" value="{{ pl_tags }}">
<label for="tags">{{ T('input-tags') }}:</label>
<input type="text" name="tags" class="tags-input" placeholder="{{ T('no-tags') }}" value="{{ pl_tags }}" {% if pl_readonly %}disabled=""{% endif %}>
</div>
{% if not pl_readonly %}
<div>

View file

@ -8,16 +8,24 @@
{% block content %}
<article>
<h1 id="firstHeading">{{ p.title }}</h1>
<header class="article-header">
<h1 id="firstHeading">{{ p.title }}</h1>
{% if p.calendar %}
<p class="calendar-subtitle"><span class="material-icons">calendar_today</span>{{ p.calendar.strftime('%B %-d, %Y') }}</p>
{% endif %}
{% if p.calendar %}
<p class="calendar-subtitle"><span class="material-icons">calendar_today</span>{{ p.calendar.strftime('%B %-d, %Y') }}</p>
{% endif %}
<div class="jump-to-actions">
<span>{{ T('last-changed') }} {{ rev.human_pub_date() }}</span> ·
<a href="#page-actions">{{ T('jump-to-actions') }}</a>
</div>
<ul class="article-actions inline">
{% if current_user and current_user.is_authenticated %}
{% if p.is_editable() %}
<li><span class="material-icons">edit</span><a href="/edit/{{ p.id }}">{{ T('action-edit') }}</a></li>
{% else %}
<li><span class="material-icons">code</span><a href="/edit/{{ p.id }}">{{ T('action-view-source') }}</a></li>
{% endif %}
{% endif %}
<li><span class="material-icons">history</span><a href="/history/{{ p.id }}">{{ rev.human_pub_date() }}</a></li>
</ul>
</header>
{% block history_nav %}{% endblock %}