10 |
11 | {% if page.gh-repo %}
12 | {% assign gh_split = page.gh-repo | split:'/' %}
13 | {% assign gh_user = gh_split[0] %}
14 | {% assign gh_repo = gh_split[1] %}
15 |
16 |
32 | {% endif %}
33 |
34 | {% if page.before-content %}
35 |
36 | {% for file in page.before-content %}
37 | {% include {{ file }} %}
38 | {% endfor %}
39 |
40 | {% endif %}
41 |
42 |
43 | {{ content }}
44 |
45 |
46 | {% if page.tags.size > 0 %}
47 |
48 |
Tags:
49 | {% for tag in page.tags %}
50 |
{{- tag -}}
51 | {% endfor %}
52 |
53 | {% endif %}
54 |
55 | {% if page.after-content %}
56 |
57 | {% for file in page.after-content %}
58 | {% include {{ file }} %}
59 | {% endfor %}
60 |
61 | {% endif %}
62 |
63 | {% if page.social-share %}
64 | {% include social-share.html %}
65 | {% endif %}
66 |
67 |
79 | {% include comments.html %}
80 |