diff options
Diffstat (limited to '_templates')
-rw-r--r-- | _templates/layout.html | 32 | ||||
-rw-r--r-- | _templates/more.html | 7 |
2 files changed, 33 insertions, 6 deletions
diff --git a/_templates/layout.html b/_templates/layout.html index 18a9de8..76c2c34 100644 --- a/_templates/layout.html +++ b/_templates/layout.html | |||
@@ -21,3 +21,35 @@ | |||
21 | <meta name="msapplication-TileColor" content="#ffffff"> | 21 | <meta name="msapplication-TileColor" content="#ffffff"> |
22 | <meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> | 22 | <meta name="msapplication-TileImage" content="/ms-icon-144x144.png"> |
23 | <meta name="theme-color" content="#ffffff"> | 23 | <meta name="theme-color" content="#ffffff"> |
24 | |||
25 | {%- block content %} | ||
26 | {%- if theme_fixed_sidebar|lower == 'true' %} | ||
27 | <div class="document"> | ||
28 | {{ sidebar() }} | ||
29 | {%- block document %} | ||
30 | <div class="documentwrapper"> | ||
31 | {%- if render_sidebar %} | ||
32 | <div class="bodywrapper"> | ||
33 | {%- endif %} | ||
34 | <div class="body" role="main"> | ||
35 | {% block body %} | ||
36 | {% endblock %} | ||
37 | <div class="just-comments" | ||
38 | data-allowguests="true" | ||
39 | data-apikey="4bb18080-e236-4513-bd72-3a032f35d3bb"> | ||
40 | </div> | ||
41 | <script async defer src="https://just-comments.com/w.js"></script> | ||
42 | <script async defer src="https://buttons.github.io/buttons.js"></script> | ||
43 | <script async defer src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | ||
44 | </div> | ||
45 | {%- if render_sidebar %} | ||
46 | </div> | ||
47 | {%- endif %} | ||
48 | </div> | ||
49 | {%- endblock %} | ||
50 | <div class="clearer"></div> | ||
51 | </div> | ||
52 | {%- else %} | ||
53 | {{ super() }} | ||
54 | {%- endif %} | ||
55 | {%- endblock %} \ No newline at end of file | ||
diff --git a/_templates/more.html b/_templates/more.html index e34a075..0245c85 100644 --- a/_templates/more.html +++ b/_templates/more.html | |||
@@ -2,13 +2,8 @@ | |||
2 | {% block projects_header %}<h3>Projects</h3>{% endblock %} | 2 | {% block projects_header %}<h3>Projects</h3>{% endblock %} |
3 | 3 | ||
4 | {% block more_content %} | 4 | {% block more_content %} |
5 | <!-- Place this tag where you want the button to render. --> | 5 | <a class="github-button" href="https://github.com/clarkzjw" aria-label="Follow @clarkzjw on GitHub">Follow @clarkzjw</a> |
6 | <a class="github-button" href="https://github.com/clarkzjw" data-show-count="true" | ||
7 | aria-label="Follow @clarkzjw on GitHub">Follow @clarkzjw</a> | ||
8 | <!-- Place this tag in your head or just before your close body tag. --> | ||
9 | <script async defer src="https://buttons.github.io/buttons.js"></script> | ||
10 | 6 | ||
11 | <a class="twitter-timeline" data-width="220" data-height="800" href="https://twitter.com/_clarkzjw">Tweets by | 7 | <a class="twitter-timeline" data-width="220" data-height="800" href="https://twitter.com/_clarkzjw">Tweets by |
12 | clarkzjw</a> | 8 | clarkzjw</a> |
13 | <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | ||
14 | {% endblock %} | 9 | {% endblock %} |