-
Notifications
You must be signed in to change notification settings - Fork 6
/
_story2.html
56 lines (42 loc) · 1.05 KB
/
_story2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{# This is an example of how to add multiple pages. Not necessary for projects with only one page. #}
{% extends '_base.html' %}
{% block meta %}
{% set header = header2 %}
{% include '_meta.html' %}
{% endblock %}
{# Customize title here #}
{% block title %}
{% set header = header2 %}
{% include '_title.html' %}
{% endblock %}
{# Customize intro here #}
{% block intro %}
{% set header = header2 %}
{% include '_intro.html' %}
{% endblock %}
{# Customize content. Modify right side of equals sign to match tab names in spreadsheet #}
{% block content %}
{% set header = header2 %}
{% set content = content2 %}
{% set right_rail = right_rail2 %}
{% set images = images2 %}
{% set bylines = bylines2 %}
{% include '_content.html' %}
{% include "_global-variables.html" %}
{% endblock %}
{# Customize analytics #}
{% block analytics %}
{% include '_analytics.html' %}
{% endblock %}
{# Customize css #}
{#
{% block css %}
{{ CSS.push('css/myfile.css')
{% endblock css %}
#}
{# Customize js #}
{#
{% block js %}
{{ js.push('js/myfile.js')
{% endblock js %}
#}