diff options
author | clarkzjw <[email protected]> | 2018-01-09 15:05:10 +0800 |
---|---|---|
committer | clarkzjw <[email protected]> | 2018-01-09 15:05:10 +0800 |
commit | 001940f3f01217a85c17e0cf9ef5949adb6ebad4 (patch) | |
tree | 6dc17aa540225777f1ab278785bdd5a1ca782226 /_templates | |
parent | 7a581c4a5efca9615933676dc4ed5411409d2450 (diff) | |
download | blog.jinwei.me-001940f3f01217a85c17e0cf9ef5949adb6ebad4.tar.gz |
+ init
Diffstat (limited to '_templates')
-rw-r--r-- | _templates/layout.html | 5 | ||||
-rw-r--r-- | _templates/more.html | 11 |
2 files changed, 16 insertions, 0 deletions
diff --git a/_templates/layout.html b/_templates/layout.html new file mode 100644 index 0000000..872da94 --- /dev/null +++ b/_templates/layout.html | |||
@@ -0,0 +1,5 @@ | |||
1 | {# Import the theme's layout. #} | ||
2 | {% extends "!layout.html" %} | ||
3 | |||
4 | {# Include our new CSS file into existing ones. #} | ||
5 | {% set css_files = css_files + ['_static/flexboxgrid.min.css', '_static/git-pull.css']%} | ||
diff --git a/_templates/more.html b/_templates/more.html new file mode 100644 index 0000000..e6bb217 --- /dev/null +++ b/_templates/more.html | |||
@@ -0,0 +1,11 @@ | |||
1 | {% extends '!more.html' %} | ||
2 | {% block projects_header %}<h3>Projects</h3>{% endblock %} | ||
3 | |||
4 | {% block more_content %} | ||
5 | <!-- Place this tag where you want the button to render. --> | ||
6 | <a class="github-button" href="https://github.com/clarkzjw" data-show-count="true" aria-label="Follow @clarkzjw on GitHub">Follow @clarkzjw</a> | ||
7 | <!-- Place this tag in your head or just before your close body tag. --> | ||
8 | <script async defer src="https://buttons.github.io/buttons.js"></script> | ||
9 | |||
10 | <a class="twitter-timeline" data-width="220" data-height="800" href="https://twitter.com/_clarkzjw">Tweets by clarkzjw</a> <script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script> | ||
11 | {% endblock %} | ||