forked from github/pelican
47 lines
1.4 KiB
Django/Jinja
Vendored
47 lines
1.4 KiB
Django/Jinja
Vendored
{% extends "base.html" %}
|
|
{% block html_lang %}{{ page.lang }}{% endblock %}
|
|
|
|
{% block title %}{{ SITENAME|striptags }} - {{ page.title|striptags }}{%endblock%}
|
|
|
|
{% block head %}
|
|
{{ super() }}
|
|
|
|
{% import 'translations.html' as translations with context %}
|
|
{% if translations.entry_hreflang(page) %}
|
|
{{ translations.entry_hreflang(page) }}
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<article>
|
|
<header>
|
|
{% if not page.image %}
|
|
<h2>{{ page.title }}</h2>
|
|
{% endif %}
|
|
{% if page.image %}
|
|
|
|
|
|
<div class="relative overflow-hidden h-[350px] mb-12">
|
|
<img class="w-full h-full object-cover object-center rounded-lg opacity-65" src="/img/banner/{{ page.image }}" alt="" />
|
|
<div class="absolute bottom-8 left-0 text-green-300">
|
|
<h2><span class="leading-relaxed bg-gray-700 p-2"><a href="{{ SITEURL }}/{{ page.url }}" rel="bookmark" title="Permalink to {{ page.title|striptags }}" class="no-underline text-green-300">{{ page .title }}</a></span></h2>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
|
|
</header>
|
|
{% import 'translations.html' as translations with context %}
|
|
{{ translations.translations_for(page) }}
|
|
<div class="prose prose-slate md:prose-lg lg:prose-xl">
|
|
{{ page.content }}
|
|
</div>
|
|
|
|
{% if page.modified %}
|
|
<footer>
|
|
<p>
|
|
</p>
|
|
</footer>
|
|
{% endif %}
|
|
</article>
|
|
{% endblock %}
|