octopress 3.0.0.alpha1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +15 -0
- data/.editorconfig +22 -0
- data/.gitattributes +1 -0
- data/.gitignore +20 -0
- data/.powrc +4 -0
- data/.rspec +5 -0
- data/.rubocop.yml +119 -0
- data/.slugignore +3 -0
- data/.themes/classic/.editorconfig +44 -0
- data/.themes/classic/_config/adn-timeline.yml +10 -0
- data/.themes/classic/_config/delicious-feed.yml +4 -0
- data/.themes/classic/_config/deploy/gh_pages.yml +9 -0
- data/.themes/classic/_config/deploy/rsync.yml +14 -0
- data/.themes/classic/_config/disqus.yml +11 -0
- data/.themes/classic/_config/facebook-like.yml +2 -0
- data/.themes/classic/_config/gauges-analytics.yml +6 -0
- data/.themes/classic/_config/github-repos.yml +24 -0
- data/.themes/classic/_config/google-analytics.yml +6 -0
- data/.themes/classic/_config/google-plus.yml +13 -0
- data/.themes/classic/_config/jekyll.yml +37 -0
- data/.themes/classic/_config/pinboard-feed.yml +4 -0
- data/.themes/classic/_config/require-js.yml +19 -0
- data/.themes/classic/_config/theme.yml +54 -0
- data/.themes/classic/_config/twitter-timeline.yml +9 -0
- data/.themes/classic/assets/javascripts/lib/ios-rotate-scaling-fix.js +18 -0
- data/.themes/classic/assets/javascripts/lib/jquery.cookie.js +92 -0
- data/.themes/classic/assets/javascripts/lib/modernizr.js +447 -0
- data/.themes/classic/assets/javascripts/lib/octopress.js +83 -0
- data/.themes/classic/assets/javascripts/modules/adn-timeline.coffee +68 -0
- data/.themes/classic/assets/javascripts/modules/delicious-feed.coffee +38 -0
- data/.themes/classic/assets/javascripts/modules/github-repos.coffee +60 -0
- data/.themes/classic/assets/javascripts/modules/github.coffee +60 -0
- data/.themes/classic/assets/javascripts/modules/helpers.coffee +96 -0
- data/.themes/classic/assets/javascripts/modules/pinboard-feed.coffee +42 -0
- data/.themes/classic/assets/javascripts/modules/site.coffee +11 -0
- data/.themes/classic/assets/stylesheets/_base.scss +5 -0
- data/.themes/classic/assets/stylesheets/_partials.scss +8 -0
- data/.themes/classic/assets/stylesheets/base/_layout.scss +191 -0
- data/.themes/classic/assets/stylesheets/base/_solarized.scss +75 -0
- data/.themes/classic/assets/stylesheets/base/_theme.scss +92 -0
- data/.themes/classic/assets/stylesheets/base/_typography.scss +168 -0
- data/.themes/classic/assets/stylesheets/base/_utilities.scss +27 -0
- data/.themes/classic/assets/stylesheets/custom/_colors.scss +49 -0
- data/.themes/classic/assets/stylesheets/custom/_fonts.scss +10 -0
- data/.themes/classic/assets/stylesheets/custom/_layout.scss +17 -0
- data/.themes/classic/assets/stylesheets/custom/_styles.scss +2 -0
- data/.themes/classic/assets/stylesheets/partials/_archive.scss +77 -0
- data/.themes/classic/assets/stylesheets/partials/_blog.scss +165 -0
- data/.themes/classic/assets/stylesheets/partials/_footer.scss +19 -0
- data/.themes/classic/assets/stylesheets/partials/_header.scss +18 -0
- data/.themes/classic/assets/stylesheets/partials/_navigation.scss +136 -0
- data/.themes/classic/assets/stylesheets/partials/_sharing.scss +73 -0
- data/.themes/classic/assets/stylesheets/partials/_sidebar.scss +4 -0
- data/.themes/classic/assets/stylesheets/partials/_syntax.scss +234 -0
- data/.themes/classic/assets/stylesheets/partials/sidebar/_base.scss +106 -0
- data/.themes/classic/assets/stylesheets/partials/sidebar/_delicious.scss +4 -0
- data/.themes/classic/assets/stylesheets/partials/sidebar/_googleplus.scss +26 -0
- data/.themes/classic/assets/stylesheets/partials/sidebar/_pinboard.scss +12 -0
- data/.themes/classic/assets/stylesheets/plugins/_plugins.scss +5 -0
- data/.themes/classic/assets/stylesheets/screen.scss +11 -0
- data/.themes/classic/source/404.markdown +9 -0
- data/.themes/classic/source/_includes/after_footer.html +7 -0
- data/.themes/classic/source/_includes/archive_post.html +12 -0
- data/.themes/classic/source/_includes/article.html +23 -0
- data/.themes/classic/source/_includes/comments.html +9 -0
- data/.themes/classic/source/_includes/custom/after_footer.html +3 -0
- data/.themes/classic/source/_includes/custom/after_page.html +1 -0
- data/.themes/classic/source/_includes/custom/after_post.html +0 -0
- data/.themes/classic/source/_includes/custom/comments.html +5 -0
- data/.themes/classic/source/_includes/custom/footer.html +4 -0
- data/.themes/classic/source/_includes/custom/head.html +7 -0
- data/.themes/classic/source/_includes/custom/header.html +6 -0
- data/.themes/classic/source/_includes/custom/navigation.html +4 -0
- data/.themes/classic/source/_includes/custom/page_meta.html +1 -0
- data/.themes/classic/source/_includes/custom/post_meta.html +1 -0
- data/.themes/classic/source/_includes/custom/sharing.html +3 -0
- data/.themes/classic/source/_includes/disqus.html +22 -0
- data/.themes/classic/source/_includes/facebook_like.html +10 -0
- data/.themes/classic/source/_includes/feed_entry.xml +10 -0
- data/.themes/classic/source/_includes/footer.html +1 -0
- data/.themes/classic/source/_includes/gauges_analytics.html +15 -0
- data/.themes/classic/source/_includes/google_analytics.html +13 -0
- data/.themes/classic/source/_includes/google_plus_one.html +9 -0
- data/.themes/classic/source/_includes/head.html +33 -0
- data/.themes/classic/source/_includes/header.html +1 -0
- data/.themes/classic/source/_includes/navigation.html +15 -0
- data/.themes/classic/source/_includes/post/author.html +8 -0
- data/.themes/classic/source/_includes/post/categories.html +10 -0
- data/.themes/classic/source/_includes/post/date.html +15 -0
- data/.themes/classic/source/_includes/post/disqus_thread.html +1 -0
- data/.themes/classic/source/_includes/post/meta.html +3 -0
- data/.themes/classic/source/_includes/post/sharing.html +36 -0
- data/.themes/classic/source/_includes/post/title.html +5 -0
- data/.themes/classic/source/_includes/post/variables.html +14 -0
- data/.themes/classic/source/_includes/sidebars/blog_index_default.html +3 -0
- data/.themes/classic/source/_includes/sidebars/page_default.html +4 -0
- data/.themes/classic/source/_includes/sidebars/post_default.html +4 -0
- data/.themes/classic/source/_includes/sidebars/sections/delicious.html +8 -0
- data/.themes/classic/source/_includes/sidebars/sections/github.html +9 -0
- data/.themes/classic/source/_includes/sidebars/sections/google_plus.html +5 -0
- data/.themes/classic/source/_includes/sidebars/sections/pinboard.html +17 -0
- data/.themes/classic/source/_includes/sidebars/sections/recent_posts.html +10 -0
- data/.themes/classic/source/_includes/twitter_sharing.html +11 -0
- data/.themes/classic/source/_layouts/category_feed.xml +24 -0
- data/.themes/classic/source/_layouts/category_index.html +19 -0
- data/.themes/classic/source/_layouts/default.html +14 -0
- data/.themes/classic/source/_layouts/page.html +34 -0
- data/.themes/classic/source/_layouts/post.html +39 -0
- data/.themes/classic/source/archives/index.html +20 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/background.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/blankButton.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/divider.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButton.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/fullscreenButtonOver.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/muteButton.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/muteButtonOver.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButton.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/normalscreenButtonOver.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/pauseButton.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/pauseButtonOver.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/playButton.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/playButtonOver.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderBuffer.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapLeft.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderCapRight.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderProgress.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/timeSliderRail.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButton.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/controlbar/unmuteButtonOver.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/display/background.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/display/bufferIcon.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/display/muteIcon.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/display/playIcon.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/dock/button.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/glow.xml +115 -0
- data/.themes/classic/source/assets/jwplayer/glow/playlist/item.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/playlist/itemOver.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/playlist/sliderCapBottom.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/playlist/sliderCapTop.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/playlist/sliderRail.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/playlist/sliderThumb.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/sharing/embedIcon.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/sharing/embedScreen.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/sharing/shareIcon.png +0 -0
- data/.themes/classic/source/assets/jwplayer/glow/sharing/shareScreen.png +0 -0
- data/.themes/classic/source/assets/jwplayer/player.swf +0 -0
- data/.themes/classic/source/atom.xml +23 -0
- data/.themes/classic/source/images/bird_32_gray.png +0 -0
- data/.themes/classic/source/images/bird_32_gray_fail.png +0 -0
- data/.themes/classic/source/images/code_bg.png +0 -0
- data/.themes/classic/source/images/dotted-border.png +0 -0
- data/.themes/classic/source/images/email.png +0 -0
- data/.themes/classic/source/images/icon/facebook.png +0 -0
- data/.themes/classic/source/images/icon/github.png +0 -0
- data/.themes/classic/source/images/icon/googleplus.png +0 -0
- data/.themes/classic/source/images/icon/twitter-bird.png +0 -0
- data/.themes/classic/source/images/icon/twitter.png +0 -0
- data/.themes/classic/source/images/line-tile.png +0 -0
- data/.themes/classic/source/images/noise.png +0 -0
- data/.themes/classic/source/images/rss.png +0 -0
- data/.themes/classic/source/images/search.png +0 -0
- data/.themes/classic/source/index.html +30 -0
- data/.themes/classic/source/javascripts/jquery.min.js +5 -0
- data/.themes/classic/source/octopress-favicon.png +0 -0
- data/.themes/classic/source/robots.txt +7 -0
- data/.travis.yml +6 -0
- data/CHANGELOG.markdown +46 -0
- data/CONTRIBUTING.markdown +17 -0
- data/Gemfile +2 -0
- data/README.markdown +37 -0
- data/Rakefile +76 -0
- data/bin/octopress +66 -0
- data/lib/console +17 -0
- data/lib/guard/jekyll.rb +33 -0
- data/lib/octopress.rb +89 -0
- data/lib/octopress/command.rb +9 -0
- data/lib/octopress/commands.rb +14 -0
- data/lib/octopress/commands/build.rb +17 -0
- data/lib/octopress/commands/build_javascripts.rb +11 -0
- data/lib/octopress/commands/build_jekyll.rb +25 -0
- data/lib/octopress/commands/build_stylesheets.rb +13 -0
- data/lib/octopress/commands/install.rb +45 -0
- data/lib/octopress/commands/new.rb +21 -0
- data/lib/octopress/commands/scaffold.rb +101 -0
- data/lib/octopress/commands/serve.rb +25 -0
- data/lib/octopress/configuration.rb +231 -0
- data/lib/octopress/core_ext.rb +44 -0
- data/lib/octopress/dependency_installer.rb +287 -0
- data/lib/octopress/errors.rb +3 -0
- data/lib/octopress/filters/content.rb +66 -0
- data/lib/octopress/filters/date.rb +46 -0
- data/lib/octopress/filters/post.rb +175 -0
- data/lib/octopress/filters/url.rb +34 -0
- data/lib/octopress/formatters.rb +9 -0
- data/lib/octopress/formatters/base_formatter.rb +17 -0
- data/lib/octopress/formatters/simple_formatter.rb +9 -0
- data/lib/octopress/formatters/verbose_formatter.rb +9 -0
- data/lib/octopress/generators/category_generator.rb +196 -0
- data/lib/octopress/generators/sitemap_generator.rb +308 -0
- data/lib/octopress/guardfile +43 -0
- data/lib/octopress/helpers/titlecase.rb +37 -0
- data/lib/octopress/ink.rb +12 -0
- data/lib/octopress/inquirable_string.rb +12 -0
- data/lib/octopress/installer.rb +92 -0
- data/lib/octopress/js_asset_manager.rb +98 -0
- data/lib/octopress/liquid_helpers/conditional.rb +36 -0
- data/lib/octopress/liquid_helpers/config.rb +58 -0
- data/lib/octopress/liquid_helpers/include.rb +33 -0
- data/lib/octopress/liquid_helpers/url.rb +29 -0
- data/lib/octopress/liquid_helpers/vars.rb +30 -0
- data/lib/octopress/plugin.rb +33 -0
- data/lib/octopress/rake.rb +16 -0
- data/lib/octopress/scaffold/.gitignore +18 -0
- data/lib/octopress/scaffold/site/Gemfile +3 -0
- data/lib/octopress/scaffold/site/config/compass.rb +27 -0
- data/lib/octopress/scaffold/site/config/rack.rb +25 -0
- data/lib/octopress/scaffold/site/config/site.yml +0 -0
- data/lib/octopress/scaffold/site/javascripts/lib/ios-rotate-scaling-fix.js +19 -0
- data/lib/octopress/scaffold/site/javascripts/lib/jquery-1.9.1.js +9598 -0
- data/lib/octopress/scaffold/site/javascripts/lib/jquery.cookie.js +93 -0
- data/lib/octopress/scaffold/site/stylesheets/_config.scss +1 -0
- data/lib/octopress/scaffold/site/stylesheets/_style.scss +1 -0
- data/lib/octopress/scaffold/site/stylesheets/site.scss +16 -0
- data/lib/octopress/tags/assign.rb +34 -0
- data/lib/octopress/tags/capture.rb +31 -0
- data/lib/octopress/tags/config-tag.rb +23 -0
- data/lib/octopress/tags/include.rb +63 -0
- data/lib/octopress/tags/js-assets.rb +23 -0
- data/lib/octopress/tags/puts.rb +39 -0
- data/lib/octopress/tags/render-partial.rb +89 -0
- data/lib/octopress/tags/return.rb +21 -0
- data/lib/octopress/version.rb +3 -0
- data/lib/rake/clean.rake +8 -0
- data/lib/rake/clobber.rake +5 -0
- data/lib/rake/console.rake +5 -0
- data/lib/rake/deploy.rake +4 -0
- data/lib/rake/gen_deploy.rake +2 -0
- data/lib/rake/generate.rake +4 -0
- data/lib/rake/generate_only.rake +14 -0
- data/lib/rake/hygiene.rake +29 -0
- data/lib/rake/install.rake +8 -0
- data/lib/rake/integrate.rake +4 -0
- data/lib/rake/isolate.rake +13 -0
- data/lib/rake/list_drafts.rake +7 -0
- data/lib/rake/new.rake +7 -0
- data/lib/rake/new_page.rake +49 -0
- data/lib/rake/new_post.rake +32 -0
- data/lib/rake/nuke.rake +4 -0
- data/lib/rake/preview.rake +4 -0
- data/lib/rake/push.rake +37 -0
- data/lib/rake/rsync.rake +20 -0
- data/lib/rake/set_root_dir.rake +35 -0
- data/lib/rake/setup_github_pages.rake +115 -0
- data/lib/rake/watch.rake +11 -0
- data/lib/scaffold/Rakefile +142 -0
- data/lib/scaffold/plugin-name.gemspec +43 -0
- data/lib/spec/fixtures/env/defaults/classic.yml +2 -0
- data/lib/spec/fixtures/no_override/defaults/classic.yml +11 -0
- data/lib/spec/fixtures/override/defaults/classic.yml +11 -0
- data/lib/spec/fixtures/override/site.yml +11 -0
- data/lib/spec/octopress/configuration_spec.rb +67 -0
- data/lib/spec/octopress/dependency_installer_spec.rb +66 -0
- data/lib/spec/octopress/ink_spec.rb +10 -0
- data/lib/spec/octopress/octopress_spec.rb +97 -0
- data/lib/spec/spec_helper.rb +22 -0
- data/lib/spec/support/env.rb +36 -0
- data/lib/spec/support/simplecov.rb +52 -0
- data/octopress.gemspec +52 -0
- metadata +697 -0
@@ -0,0 +1,5 @@
|
|
1
|
+
{% if site.google_plus_user %}
|
2
|
+
<a href="https://plus.google.com/{{ site.google_plus_user }}?rel=author"{% if site.google_plus_hidden %} class="googleplus-hidden"{% endif %}>
|
3
|
+
<img src="https://ssl.gstatic.com/images/icons/gplus-{{ site.google_plus_image_size}}.png" alt="Google Plus icon">
|
4
|
+
</a>
|
5
|
+
{% endif %}
|
@@ -0,0 +1,17 @@
|
|
1
|
+
{% if site.pinboard_user %}
|
2
|
+
<section>
|
3
|
+
<h1>My Pinboard</h1>
|
4
|
+
<ul id="pinboard_linkroll">Fetching linkroll...</ul>
|
5
|
+
<p><a href="http://pinboard.in/u:{{ site.pinboard_user }}">My Pinboard Bookmarks »</a></p>
|
6
|
+
</section>
|
7
|
+
<script type="text/javascript">
|
8
|
+
$(document).ready(function(){
|
9
|
+
pinboard.getFeed({
|
10
|
+
target: 'pinboard_linkroll' //id target for pinboard list
|
11
|
+
, user: "{{ site.pinboard_user }}"
|
12
|
+
, count: {{ site.pinboard_count }}
|
13
|
+
});
|
14
|
+
});
|
15
|
+
</script>
|
16
|
+
<script src="{{ root_url }}/javascripts/pinboard.js" type="text/javascript"></script>
|
17
|
+
{% endif %}
|
@@ -0,0 +1,11 @@
|
|
1
|
+
{% if site.twitter_follow_button or site.twitter_tweet_button %}
|
2
|
+
<script type="text/javascript">
|
3
|
+
(function(){
|
4
|
+
var twitterWidgets = document.createElement('script');
|
5
|
+
twitterWidgets.type = 'text/javascript';
|
6
|
+
twitterWidgets.async = true;
|
7
|
+
twitterWidgets.src = '//platform.twitter.com/widgets.js';
|
8
|
+
document.getElementsByTagName('head')[0].appendChild(twitterWidgets);
|
9
|
+
})();
|
10
|
+
</script>
|
11
|
+
{% endif %}
|
@@ -0,0 +1,24 @@
|
|
1
|
+
---
|
2
|
+
layout: nil
|
3
|
+
---
|
4
|
+
<?xml version="1.0" encoding="utf-8"?>
|
5
|
+
<feed xmlns="http://www.w3.org/2005/Atom">
|
6
|
+
|
7
|
+
<title><![CDATA[{{ page.title }} | {{ site.title }}]]></title>
|
8
|
+
<link href="{{ site.url }}/{{ page.feed_url }}" rel="self"/>
|
9
|
+
<link href="{{ site.url }}/"/>
|
10
|
+
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
11
|
+
<id>{{ site.url }}/</id>
|
12
|
+
<author>
|
13
|
+
<name><![CDATA[{{ site.author | strip_html }}]]></name>
|
14
|
+
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
|
15
|
+
</author>
|
16
|
+
<generator uri="http://octopress.org/">Octopress</generator>
|
17
|
+
|
18
|
+
{% for post in site.categories[page.category] limit: 5 %}
|
19
|
+
<entry>
|
20
|
+
{% include feed_entry.xml %}
|
21
|
+
<content type="html"><![CDATA[{{ content | markdownify | cdata_escape }}]]></content>
|
22
|
+
</entry>
|
23
|
+
{% endfor %}
|
24
|
+
</feed>
|
@@ -0,0 +1,19 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
footer: false
|
4
|
+
body_id: archive
|
5
|
+
---
|
6
|
+
|
7
|
+
<div id="blog-archives" class="category">
|
8
|
+
{% for post in site.categories[page.category] %}
|
9
|
+
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
10
|
+
{% unless year == this_year %}
|
11
|
+
{% assign year = this_year %}
|
12
|
+
<h2>{{ year }}</h2>
|
13
|
+
{% endunless %}
|
14
|
+
{% include post/variables.html %}
|
15
|
+
<article {% if linklog %}class='linklog'{% endif %}>
|
16
|
+
{% include archive_post.html %}
|
17
|
+
</article>
|
18
|
+
{% endfor %}
|
19
|
+
</div>
|
@@ -0,0 +1,14 @@
|
|
1
|
+
{% capture root_url %}{{ site.root | strip_slash }}{% endcapture %}
|
2
|
+
{% include head.html %}
|
3
|
+
<body {% if page.body_id %} id="{{ page.body_id }}" {% endif %} {% if page.sidebar == false %} class="no-sidebar" {% endif %} {% if page.sidebar == 'collapse' or site.sidebar == 'collapse' %} class="collapse-sidebar sidebar-footer" {% endif %}>
|
4
|
+
<header role="banner">{% include header.html %}</header>
|
5
|
+
<nav role="navigation">{% include navigation.html %}</nav>
|
6
|
+
<div id="main">
|
7
|
+
<div id="content">
|
8
|
+
{{ content | expand_urls: root_url }}
|
9
|
+
</div>
|
10
|
+
</div>
|
11
|
+
<footer role="contentinfo">{% include footer.html %}</footer>
|
12
|
+
{% include after_footer.html %}
|
13
|
+
</body>
|
14
|
+
</html>
|
@@ -0,0 +1,34 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
---
|
4
|
+
|
5
|
+
<div>
|
6
|
+
<article role="article">
|
7
|
+
{% if page.title %}
|
8
|
+
<header>
|
9
|
+
<h1 class="entry-title">{% if site.titlecase and page.titlecase != false %}{{ page.title | titlecase }}{% else %}{{ page.title }}{% endif %}</h1>
|
10
|
+
{% if page.date %}<p class="meta">{% include post/date.html %}{{ time }}</p>{% endif %}
|
11
|
+
</header>
|
12
|
+
{% endif %}
|
13
|
+
{{ content }}
|
14
|
+
{% unless page.footer == false %}
|
15
|
+
<footer>
|
16
|
+
<p class="meta">{% include post/meta.html %}{% include custom/page_meta.html %}</p>
|
17
|
+
{% unless page.sharing == false %}
|
18
|
+
{% include post/sharing.html %}
|
19
|
+
{% endunless %}
|
20
|
+
</footer>
|
21
|
+
{% endunless %}
|
22
|
+
</article>
|
23
|
+
{% include custom/after_page.html %}
|
24
|
+
{% if page.comments == true %}{% include comments.html %}{% endif %}
|
25
|
+
</div>
|
26
|
+
{% unless page.sidebar == false or site.default_sidebar == false %}
|
27
|
+
<aside class="sidebar">
|
28
|
+
{% if page.sidebar == nil or page.sidebar == 'collapse' %}
|
29
|
+
{% include_sidebar site.page_sidebar %}
|
30
|
+
{% else %}
|
31
|
+
{% include_sidebar %}
|
32
|
+
{% endif %}
|
33
|
+
</aside>
|
34
|
+
{% endunless %}
|
@@ -0,0 +1,39 @@
|
|
1
|
+
---
|
2
|
+
layout: default
|
3
|
+
single: true
|
4
|
+
---
|
5
|
+
|
6
|
+
<div>
|
7
|
+
{% include post/variables.html %}
|
8
|
+
<article class="hentry {% if linklog %}linklog{% endif %}" role="article">
|
9
|
+
{% include article.html %}
|
10
|
+
<footer>
|
11
|
+
<p class="meta">
|
12
|
+
{% include post/meta.html %}
|
13
|
+
{% include custom/post_meta.html %}
|
14
|
+
</p>
|
15
|
+
{% unless page.sharing == false %}
|
16
|
+
{% include post/sharing.html %}
|
17
|
+
{% endunless %}
|
18
|
+
<p class="meta">
|
19
|
+
{% if page.previous.url %}
|
20
|
+
<a class="basic-alignment left" href="{{page.previous.url}}" title="Previous Post: {{page.previous.title}}">« {{page.previous.title}}</a>
|
21
|
+
{% endif %}
|
22
|
+
{% if page.next.url %}
|
23
|
+
<a class="basic-alignment right" href="{{page.next.url}}" title="Next Post: {{page.next.title}}">{{page.next.title}} »</a>
|
24
|
+
{% endif %}
|
25
|
+
</p>
|
26
|
+
</footer>
|
27
|
+
</article>
|
28
|
+
{% include custom/after_post.html %}
|
29
|
+
{% if page.comments == true %}{% include comments.html %}{% endif %}
|
30
|
+
</div>
|
31
|
+
{% unless page.sidebar == false or site.default_sidebar == false %}
|
32
|
+
<aside class="sidebar">
|
33
|
+
{% if page.sidebar == nil or page.sidebar == 'collapse' %}
|
34
|
+
{% include_sidebar site.post_sidebar %}
|
35
|
+
{% else %}
|
36
|
+
{% include_sidebar %}
|
37
|
+
{% endif %}
|
38
|
+
</aside>
|
39
|
+
{% endunless %}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
---
|
2
|
+
layout: page
|
3
|
+
title: Blog Archive
|
4
|
+
footer: false
|
5
|
+
body_id: archive
|
6
|
+
---
|
7
|
+
|
8
|
+
<div id="blog-archives">
|
9
|
+
{% for post in site.posts reverse %}
|
10
|
+
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
11
|
+
{% unless year == this_year %}
|
12
|
+
{% assign year = this_year %}
|
13
|
+
<h2>{{ year }}</h2>
|
14
|
+
{% endunless %}
|
15
|
+
{% include post/variables.html %}
|
16
|
+
<article {% if linklog %}data-linklog{% endif %}>
|
17
|
+
{% include archive_post.html %}
|
18
|
+
</article>
|
19
|
+
{% endfor %}
|
20
|
+
</div>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,115 @@
|
|
1
|
+
<?xml version="1.0"?>
|
2
|
+
<skin version="1.1" name="Glow" author="LongTail Video">
|
3
|
+
|
4
|
+
<settings>
|
5
|
+
<setting name="backcolor" value="0x000000" />
|
6
|
+
<setting name="frontcolor" value="0xeeeeee" />
|
7
|
+
<setting name="lightcolor" value="0xeeeeee" />
|
8
|
+
<setting name="screencolor" value="0x000000" />
|
9
|
+
</settings>
|
10
|
+
|
11
|
+
<components>
|
12
|
+
<component name="controlbar">
|
13
|
+
<settings>
|
14
|
+
<setting name="margin" value="0" />
|
15
|
+
<setting name="fontsize" value="11" />
|
16
|
+
<setting name="fontcolor" value="0xEEEEEE" />
|
17
|
+
<setting name="buttoncolor" value="0xEEEEEE" />
|
18
|
+
</settings>
|
19
|
+
|
20
|
+
<layout>
|
21
|
+
<group position="left">
|
22
|
+
<button name="play" />
|
23
|
+
<text name="elapsed" />
|
24
|
+
</group>
|
25
|
+
<group position="center">
|
26
|
+
<slider name="time" />
|
27
|
+
</group>
|
28
|
+
<group position="right">
|
29
|
+
<text name="duration" />
|
30
|
+
<button name="blank" />
|
31
|
+
<button name="mute" />
|
32
|
+
<button name="fullscreen" />
|
33
|
+
</group>
|
34
|
+
</layout>
|
35
|
+
|
36
|
+
<elements>
|
37
|
+
<element name="background" src="background.png" />
|
38
|
+
<element name="capLeft" src="divider.png" />
|
39
|
+
<element name="capRight" src="divider.png" />
|
40
|
+
<element name="divider" src="divider.png" />
|
41
|
+
<element name="blankButton" src="blankButton.png" />
|
42
|
+
<element name="fullscreenButton" src="fullscreenButton.png" />
|
43
|
+
<element name="fullscreenButtonOver" src="fullscreenButtonOver.png" />
|
44
|
+
<element name="muteButton" src="muteButton.png" />
|
45
|
+
<element name="muteButtonOver" src="muteButtonOver.png" />
|
46
|
+
<element name="pauseButton" src="pauseButton.png" />
|
47
|
+
<element name="pauseButtonOver" src="pauseButtonOver.png" />
|
48
|
+
<element name="playButton" src="playButton.png" />
|
49
|
+
<element name="playButtonOver" src="playButtonOver.png" />
|
50
|
+
<element name="timeSliderBuffer" src="timeSliderBuffer.png" />
|
51
|
+
<element name="timeSliderCapLeft" src="timeSliderCapLeft.png" />
|
52
|
+
<element name="timeSliderCapRight" src="timeSliderCapRight.png" />
|
53
|
+
<element name="timeSliderProgress" src="timeSliderProgress.png" />
|
54
|
+
<element name="timeSliderRail" src="timeSliderRail.png" />
|
55
|
+
<element name="normalscreenButton" src="normalscreenButton.png" />
|
56
|
+
<element name="normalscreenButtonOver" src="normalscreenButtonOver.png" />
|
57
|
+
<element name="unmuteButton" src="unmuteButton.png" />
|
58
|
+
<element name="unmuteButtonOver" src="unmuteButtonOver.png" />
|
59
|
+
<element name="volumeSliderRail" src="divider.png" />
|
60
|
+
<element name="volumeSliderProgress" src="divider.png" />
|
61
|
+
</elements>
|
62
|
+
</component>
|
63
|
+
|
64
|
+
<component name="display">
|
65
|
+
<settings>
|
66
|
+
<setting name="bufferinterval" value="250" />
|
67
|
+
<setting name="bufferrotation" value="90" />
|
68
|
+
</settings>
|
69
|
+
<elements>
|
70
|
+
<element name="background" src="background.png" />
|
71
|
+
<element name="playIcon" src="playIcon.png" />
|
72
|
+
<element name="muteIcon" src="muteIcon.png" />
|
73
|
+
<element name="errorIcon" src="bufferIcon.png" />
|
74
|
+
<element name="bufferIcon" src="bufferIcon.png" />
|
75
|
+
</elements>
|
76
|
+
</component>
|
77
|
+
|
78
|
+
<component name="dock">
|
79
|
+
<settings>
|
80
|
+
<setting name="fontcolor" value="0xFFFFFF" />
|
81
|
+
</settings>
|
82
|
+
<elements>
|
83
|
+
<element name="button" src="button.png" />
|
84
|
+
</elements>
|
85
|
+
</component>
|
86
|
+
|
87
|
+
<component name="playlist">
|
88
|
+
<settings>
|
89
|
+
<setting name="fontcolor" value="0xEEEEEE" />
|
90
|
+
<setting name="overcolor" value="0xFFFFFF" />
|
91
|
+
<setting name="activecolor" value="0xFFFFFF" />
|
92
|
+
<setting name="backgroundcolor" value="0x333333" />
|
93
|
+
</settings>
|
94
|
+
<elements>
|
95
|
+
<element name="item" src="item.png" />
|
96
|
+
<element name="itemOver" src="itemOver.png" />
|
97
|
+
<element name="sliderCapBottom" src="sliderCapBottom.png" />
|
98
|
+
<element name="sliderCapTop" src="sliderCapTop.png" />
|
99
|
+
<element name="sliderRail" src="sliderRail.png" />
|
100
|
+
<element name="sliderThumb" src="sliderThumb.png" />
|
101
|
+
</elements>
|
102
|
+
</component>
|
103
|
+
|
104
|
+
<component name="sharing">
|
105
|
+
<elements>
|
106
|
+
<element name="embedIcon" src="embedIcon.png" />
|
107
|
+
<element name="embedScreen" src="embedScreen.png" />
|
108
|
+
<element name="shareIcon" src="shareIcon.png" />
|
109
|
+
<element name="shareScreen" src="shareScreen.png" />
|
110
|
+
</elements>
|
111
|
+
</component>
|
112
|
+
|
113
|
+
</components>
|
114
|
+
|
115
|
+
</skin>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
@@ -0,0 +1,23 @@
|
|
1
|
+
---
|
2
|
+
layout: nil
|
3
|
+
---
|
4
|
+
<?xml version="1.0" encoding="utf-8"?>
|
5
|
+
<feed xmlns="http://www.w3.org/2005/Atom">
|
6
|
+
<title><![CDATA[{{ site.title }}]]></title>
|
7
|
+
<link href="{{ site.url }}/atom.xml" rel="self"/>
|
8
|
+
<link href="{{ site.url }}/"/>
|
9
|
+
<updated>{{ site.time | date_to_xmlschema }}</updated>
|
10
|
+
<id>{{ site.url }}/</id>
|
11
|
+
<author>
|
12
|
+
<name><![CDATA[{{ site.author | strip_html }}]]></name>
|
13
|
+
{% if site.email %}<email><![CDATA[{{ site.email }}]]></email>{% endif %}
|
14
|
+
</author>
|
15
|
+
<generator uri="http://octopress.org/">Octopress</generator>
|
16
|
+
|
17
|
+
{% for post in site.posts limit: 20 %}
|
18
|
+
<entry>
|
19
|
+
{% include feed_entry.xml %}
|
20
|
+
<content type="html"><![CDATA[{{ content | cdata_escape }}]]></content>
|
21
|
+
</entry>
|
22
|
+
{% endfor %}
|
23
|
+
</feed>
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|
Binary file
|