this repo has no description
1{% macro copyright() %}
2 {%- if config.extra.copyright -%}
3 <div class="copyright copyright--user">{{ config.extra.copyright | safe }}</div>
4 {%- else -%}
5 <div class="copyright">
6 <span>© {{ now() | date(format="%Y") }} <a href="https://github.com/ejmg/zerm">zerm</a> :: Powered by <a href="https://www.getzola.org/">Zola</a></span>
7 <span>:: Theme made by <a href="https://github.com/ejmg">ejmg</a></span>
8 </div>
9 {%- endif -%}
10{% endmacro copyright %}
11
12{% macro script() %}
13 <script type="text/javascript" src="{{ get_url(path="assets/js/main.js") }}"></script>
14{% endmacro script %}