mirror of
https://github.com/BobbyWibowo/lolisafe.git
synced 2024-12-13 16:06:21 +00:00
34d3601c30
Added new dev dependencies: bulma, gulp-sass, node-sass Updated some dependencies Various other things related to styling Bumped v1 version string and rebuilt client assets
30 lines
741 B
Plaintext
30 lines
741 B
Plaintext
{% set metaTitle %}
|
|
{{- album.name | truncate(60, true, '…') -}}
|
|
{% endset %}
|
|
{% set metaDesc = album.description | striptags | truncate(200, true, '…') %}
|
|
{% set metaUrl = '/' + album.url %}
|
|
|
|
{% extends "_layout.njk" %}
|
|
|
|
{% block stylesheets %}
|
|
<!-- Libs stylesheets -->
|
|
<link rel="stylesheet" href="../libs/fontello/fontello.css{{ versions[1] }}">
|
|
<!-- Stylesheets -->
|
|
<link rel="stylesheet" href="../css/style.css{{ versions[1] }}">
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
{{ super() }}
|
|
<section class="hero is-fullheight">
|
|
<div class="hero-body">
|
|
<div class="container has-text-centered is-size-5">
|
|
<p>
|
|
{{ notice }}
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
{% include "_partial/floating-home.njk" %}
|
|
{% endblock %}
|