template
This commit is contained in:
@@ -0,0 +1,28 @@
|
||||
{% macro pageLinkName(text) %}{{ text|lower|replace({' ':'_'}) }}{% endmacro %}
|
||||
|
||||
{% block body %}
|
||||
|
||||
<div class="column">
|
||||
<h2>{{page.title }}</h2>
|
||||
{{page.content}}
|
||||
|
||||
{% for module in page.collection() %}
|
||||
<a href="#{{module.title}}">{{module.title}}</a>
|
||||
{% endfor %}
|
||||
|
||||
<div class="reso">
|
||||
<p>facebook</p>
|
||||
<p>youtube</p>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
|
||||
<div class="column">
|
||||
|
||||
{% for module in page.collection() %}
|
||||
{{ module.content }}
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user