-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathindex.html
executable file
·54 lines (41 loc) · 962 Bytes
/
index.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
{% extends '_base.html' %}
{% block meta %}
{% set header = header %}
{% include '_meta.html' %}
{% endblock %}
{# Customize title here #}
{% block title %}
{% set header = header %}
{% include '_title.html' %}
{% endblock %}
{# Customize intro here #}
{% block intro %}
{% set header = header %}
{% include '_intro.html' %}
{% endblock %}
{# Customize content. Modify right side of equals sign to match tab names in spreadsheet #}
{% block content %}
{% set header = header %}
{% set content = content %}
{% set right_rail = right_rail %}
{% set images = images %}
{% set bylines = bylines %}
{% 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 %}
#}