diff options
Diffstat (limited to 'source/_includes/custom')
-rw-r--r-- | source/_includes/custom/after_footer.html | 2 | ||||
-rw-r--r-- | source/_includes/custom/asides/about.html | 4 | ||||
-rw-r--r-- | source/_includes/custom/category_feed.xml | 27 | ||||
-rw-r--r-- | source/_includes/custom/footer.html | 1 | ||||
-rw-r--r-- | source/_includes/custom/head.html | 0 | ||||
-rw-r--r-- | source/_includes/custom/header.html | 0 | ||||
-rw-r--r-- | source/_includes/custom/navigation.html | 19 |
7 files changed, 53 insertions, 0 deletions
diff --git a/source/_includes/custom/after_footer.html b/source/_includes/custom/after_footer.html new file mode 100644 index 0000000..f3bec2f --- /dev/null +++ b/source/_includes/custom/after_footer.html @@ -0,0 +1,2 @@ +<script src="{{ root_url }}/javascripts/jquery.easing.1.3.js"></script> +<script src="{{ root_url }}/javascripts/banner.js"></script>
\ No newline at end of file diff --git a/source/_includes/custom/asides/about.html b/source/_includes/custom/asides/about.html new file mode 100644 index 0000000..59d309e --- /dev/null +++ b/source/_includes/custom/asides/about.html @@ -0,0 +1,4 @@ +<section> + <h1>About Me</h1> + <p>A little something about me.</p> +</section> diff --git a/source/_includes/custom/category_feed.xml b/source/_includes/custom/category_feed.xml new file mode 100644 index 0000000..f47c553 --- /dev/null +++ b/source/_includes/custom/category_feed.xml @@ -0,0 +1,27 @@ +--- +layout: nil +--- +<?xml version="1.0" encoding="utf-8"?> +<feed xmlns="http://www.w3.org/2005/Atom"> + + <title><![CDATA[{{ page.title }} | {{ site.title }}]]></title> + <link href="{{ site.url }}/{{ page.feed_url }}" rel="self"/> + <link href="{{ site.url }}/"/> + <updated>{{ site.time | date_to_xmlschema }}</updated> + <id>{{ site.url }}/</id> + <author> + <name><![CDATA[{{ site.author | strip_html }}]]></name> + {% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %} + </author> + <generator uri="http://octopress.org/">Octopress</generator> + + {% for post in site.categories[page.category] limit: 5 %} + <entry> + <title type="html"><![CDATA[{{ post.title | cdata_escape }}]]></title> + <link href="{{ site.url }}{{ post.url }}"/> + <updated>{{ post.date | date_to_xmlschema }}</updated> + <id>{{ site.url }}{{ post.id }}</id> + <content type="html"><![CDATA[{{ post.content | expand_urls: site.url | markdownify | cdata_escape }}]]></content> + </entry> + {% endfor %} +</feed> diff --git a/source/_includes/custom/footer.html b/source/_includes/custom/footer.html new file mode 100644 index 0000000..f742b2f --- /dev/null +++ b/source/_includes/custom/footer.html @@ -0,0 +1 @@ +版權所有 © {{ site.time | date: "%Y" }} {{ site.title }}
\ No newline at end of file diff --git a/source/_includes/custom/head.html b/source/_includes/custom/head.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/_includes/custom/head.html diff --git a/source/_includes/custom/header.html b/source/_includes/custom/header.html new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/source/_includes/custom/header.html diff --git a/source/_includes/custom/navigation.html b/source/_includes/custom/navigation.html new file mode 100644 index 0000000..a572467 --- /dev/null +++ b/source/_includes/custom/navigation.html @@ -0,0 +1,19 @@ +<ul class="main"> + <li><a href="{{ root_url }}/l10n">中文化</a></li> + <li> + <a href="{{ root_url }}/themes">主題</a> + <ul class="sub-menu"> + <li><a href="{{ root_url }}/themes/pixivcustom">Pixiv Custom</a></li> + <li><a href="{{ root_url }}/themes/corner">Corner</a></li> + </ul> + </li> + <li> + <a href="{{ root_url }}/scripts">腳本</a> + <ul class="sub-menu"> + <li><a href="{{ root_url }}/scripts/google-plus-hover-zoom">Google+ Hover Zoom</a></li> + <li><a href="{{ root_url }}/scripts/google-plus-fxxking-filter">Google+ Fxxking Filter</a></li> + <li><a href="{{ root_url }}/scripts/google-plus-motionless">Google+ Motionless</a></li> + <li><a href="{{ root_url }}/scripts/google-plus-speed-reply">Google+ Speed Reply</a></li> + </ul> + </li> +</ul> |