commit
fd7f3c4420
@ -16,14 +16,6 @@
|
||||
|
||||
<body>
|
||||
<main>
|
||||
<nav class="blue-grey darken-1">
|
||||
<div class="nav-wrapper">
|
||||
<a href="#" class="brand-logo right">{{ settings.title }}</a>
|
||||
{% if settings.menu -%}
|
||||
{% include 'menu.html' %}
|
||||
{% endif -%}
|
||||
</div>
|
||||
</nav>
|
||||
|
||||
{% for section in gallery.sections %}
|
||||
{% include "sections/" + section.type + ".html" %}
|
||||
|
@ -26,10 +26,10 @@
|
||||
{% set cover = Image(gallery.cover) %}
|
||||
{{ cover.copy() }}
|
||||
<img src="{{ cover.generate_thumbnail("x800") }}">
|
||||
<span class="card-title">{{ gallery.title }}</span>
|
||||
<span class="card-title truncate">{{ gallery.title }}</span>
|
||||
</div>
|
||||
<div class="card-content">
|
||||
<span class="card-title">{% if gallery.sub_title %}{{ gallery.sub_title }}{% endif %}</span>
|
||||
<span class="card-title truncate">{% if gallery.sub_title %}{{ gallery.sub_title }}{% endif %}</span>
|
||||
{% if gallery.tags %}{% for tag in gallery.tags -%}<div class="chip right"><i class="mdi-action-label"></i> {{ tag }} </div>{% endfor -%}{% endif %}
|
||||
</div>
|
||||
<div class="card-action">
|
||||
|
@ -1,5 +1,5 @@
|
||||
{% set image = Image(section.image) %}
|
||||
{{ image.copy() }}
|
||||
<div class="container panorama">
|
||||
<img src="{{ image.generate_thumbnail("x800") }}">
|
||||
<div class="panorama">
|
||||
<img src="{{ image }}">
|
||||
</div>
|
||||
|
Loading…
x
Reference in New Issue
Block a user