├── POHTML
├── .gitignore
├── images
│ ├── pic01.jpg
│ ├── pic02.jpg
│ ├── pic03.jpg
│ ├── pic04.jpg
│ ├── pic05.jpg
│ ├── pic06.jpg
│ ├── pic07.jpg
│ ├── pic08.jpg
│ ├── pic09.jpg
│ └── pic10.jpg
├── css
│ ├── images
│ │ └── bg.png
│ └── ie
│ │ └── v8.css
└── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── rootssite
├── assets
│ ├── img
│ │ ├── .keep
│ │ ├── lsp.jpg
│ │ ├── about.jpg
│ │ ├── finn.jpg
│ │ ├── jake.jpg
│ │ ├── pic01.jpg
│ │ ├── breezy.jpg
│ │ ├── citadel.jpg
│ │ ├── iceking.jpg
│ │ ├── jamesii.jpg
│ │ ├── sadface.jpg
│ │ ├── thetower.jpg
│ │ ├── wakeup.jpg
│ │ ├── bubblegum.jpg
│ │ ├── foodchain.jpg
│ │ └── marceline.jpg
│ ├── js
│ │ └── main.coffee
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ └── css
│ │ └── custom.styl
├── .gitignore
├── views
│ ├── post.jade
│ ├── includes
│ │ ├── _header.jade
│ │ └── _footer.jade
│ ├── layout.jade
│ └── index.jade
├── package.json
├── data
│ ├── site.json
│ └── characters.json
├── readme.md
├── app.production.coffee
└── app.coffee
├── wyamsite
├── .gitignore
├── input
│ ├── _ViewStart.cshtml
│ ├── posts
│ │ └── _ViewStart.cshtml
│ ├── images
│ │ ├── finn.jpg
│ │ ├── jake.jpg
│ │ ├── lsp.jpg
│ │ ├── about.jpg
│ │ ├── breezy.jpg
│ │ ├── citadel.jpg
│ │ ├── iceking.jpg
│ │ ├── jamesii.jpg
│ │ ├── pic01.jpg
│ │ ├── sadface.jpg
│ │ ├── wakeup.jpg
│ │ ├── bubblegum.jpg
│ │ ├── foodchain.jpg
│ │ ├── marceline.jpg
│ │ └── thetower.jpg
│ ├── css
│ │ ├── images
│ │ │ └── bg.png
│ │ └── ie
│ │ │ └── v8.css
│ ├── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
│ ├── Shared
│ │ ├── _post.cshtml
│ │ ├── _default.cshtml
│ │ └── partials
│ │ │ ├── _header.cshtml
│ │ │ └── _head.cshtml
│ └── characters.yaml
└── config.wyam
├── harpsite
├── .gitignore
├── public
│ ├── 404.jade
│ ├── assets
│ │ ├── images
│ │ │ ├── finn.jpg
│ │ │ ├── jake.jpg
│ │ │ ├── lsp.jpg
│ │ │ ├── about.jpg
│ │ │ ├── breezy.jpg
│ │ │ ├── pic01.jpg
│ │ │ ├── wakeup.jpg
│ │ │ ├── bubblegum.jpg
│ │ │ ├── citadel.jpg
│ │ │ ├── foodchain.jpg
│ │ │ ├── iceking.jpg
│ │ │ ├── jamesii.jpg
│ │ │ ├── marceline.jpg
│ │ │ ├── sadface.jpg
│ │ │ └── thetower.jpg
│ │ ├── css
│ │ │ ├── images
│ │ │ │ └── bg.png
│ │ │ └── ie
│ │ │ │ └── v8.css
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ ├── _layout.jade
│ ├── rss.xml.jade
│ ├── _partials
│ │ ├── header.jade
│ │ └── head.jade
│ ├── posts
│ │ ├── _layout.jade
│ │ └── _data.json
│ └── _data.json
└── harp.json
├── harpsite_ejs
├── public
│ ├── rss.xml.ejs
│ ├── 404.ejs
│ ├── assets
│ │ ├── images
│ │ │ ├── about.jpg
│ │ │ ├── finn.jpg
│ │ │ ├── jake.jpg
│ │ │ ├── lsp.jpg
│ │ │ ├── pic01.jpg
│ │ │ ├── breezy.jpg
│ │ │ ├── citadel.jpg
│ │ │ ├── iceking.jpg
│ │ │ ├── jamesii.jpg
│ │ │ ├── sadface.jpg
│ │ │ ├── wakeup.jpg
│ │ │ ├── bubblegum.jpg
│ │ │ ├── foodchain.jpg
│ │ │ ├── marceline.jpg
│ │ │ └── thetower.jpg
│ │ ├── css
│ │ │ ├── images
│ │ │ │ └── bg.png
│ │ │ └── ie
│ │ │ │ └── v8.css
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ ├── _layout.ejs
│ ├── _partials
│ │ ├── header.ejs
│ │ └── head.ejs
│ ├── posts
│ │ ├── _layout.ejs
│ │ └── _data.json
│ └── _data.json
├── .gitignore
└── harp.json
├── hugosite
├── public
│ ├── 404
│ │ └── index.html
│ ├── 2014
│ │ ├── index.html
│ │ └── 04
│ │ │ └── spf13-vim-3-0-release-and-new-website
│ │ │ └── index.html
│ ├── tags
│ │ ├── index.vimrc
│ │ ├── vim
│ │ │ └── index.html
│ │ ├── plugins
│ │ │ └── index.html
│ │ └── spf13-vim
│ │ │ └── index.html
│ ├── categories
│ │ ├── vim
│ │ │ └── index.html
│ │ ├── episodes
│ │ │ └── index.html
│ │ ├── season6
│ │ │ └── index.html
│ │ └── development
│ │ │ └── index.html
│ ├── assets
│ │ ├── images
│ │ │ ├── finn.jpg
│ │ │ ├── jake.jpg
│ │ │ ├── lsp.jpg
│ │ │ ├── about.jpg
│ │ │ ├── breezy.jpg
│ │ │ ├── pic01.jpg
│ │ │ ├── wakeup.jpg
│ │ │ ├── bubblegum.jpg
│ │ │ ├── citadel.jpg
│ │ │ ├── foodchain.jpg
│ │ │ ├── iceking.jpg
│ │ │ ├── jamesii.jpg
│ │ │ ├── marceline.jpg
│ │ │ ├── sadface.jpg
│ │ │ └── thetower.jpg
│ │ ├── css
│ │ │ ├── images
│ │ │ │ └── bg.png
│ │ │ └── ie
│ │ │ │ └── v8.css
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ └── sitemap.xml
├── .gitignore
├── static
│ └── assets
│ │ ├── images
│ │ ├── finn.jpg
│ │ ├── jake.jpg
│ │ ├── lsp.jpg
│ │ ├── about.jpg
│ │ ├── breezy.jpg
│ │ ├── pic01.jpg
│ │ ├── wakeup.jpg
│ │ ├── bubblegum.jpg
│ │ ├── citadel.jpg
│ │ ├── foodchain.jpg
│ │ ├── iceking.jpg
│ │ ├── jamesii.jpg
│ │ ├── marceline.jpg
│ │ ├── sadface.jpg
│ │ └── thetower.jpg
│ │ ├── css
│ │ ├── images
│ │ │ └── bg.png
│ │ └── ie
│ │ │ └── v8.css
│ │ └── fonts
│ │ ├── FontAwesome.otf
│ │ ├── fontawesome-webfont.eot
│ │ ├── fontawesome-webfont.ttf
│ │ └── fontawesome-webfont.woff
├── layouts
│ ├── partials
│ │ ├── header.html
│ │ ├── head.html
│ │ └── footer.html
│ └── _default
│ │ └── single.html
├── config.toml
└── data
│ └── characters.toml
├── docpadsite
├── .gitignore
├── README.md
├── src
│ ├── static
│ │ ├── images
│ │ │ ├── about.jpg
│ │ │ ├── finn.jpg
│ │ │ ├── jake.jpg
│ │ │ ├── lsp.jpg
│ │ │ ├── pic01.jpg
│ │ │ ├── breezy.jpg
│ │ │ ├── citadel.jpg
│ │ │ ├── iceking.jpg
│ │ │ ├── jamesii.jpg
│ │ │ ├── sadface.jpg
│ │ │ ├── wakeup.jpg
│ │ │ ├── bubblegum.jpg
│ │ │ ├── foodchain.jpg
│ │ │ ├── marceline.jpg
│ │ │ └── thetower.jpg
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ ├── render
│ │ ├── css
│ │ │ ├── images
│ │ │ │ └── bg.png
│ │ │ └── ie
│ │ │ │ └── v8.css
│ │ └── data
│ │ │ └── characters.json.yaml
│ ├── layouts
│ │ ├── default.html.eco
│ │ └── post.html.eco
│ └── partials
│ │ ├── header.html.eco
│ │ ├── characters.html.eco
│ │ ├── head.html.eco
│ │ └── footer.html.eco
├── package.json
└── docpad.coffee
├── .gitignore
├── wintersmithsite
├── .gitignore
├── node_modules
│ ├── underscore
│ │ ├── CNAME
│ │ ├── .npmignore
│ │ ├── index.js
│ │ ├── .travis.yml
│ │ ├── favicon.ico
│ │ ├── CONTRIBUTING.md
│ │ ├── LICENSE
│ │ ├── README.md
│ │ └── package.json
│ ├── moment
│ │ ├── .vimrc-local
│ │ ├── ender.js
│ │ ├── .npmignore
│ │ ├── .travis.yml
│ │ ├── package.js
│ │ ├── tasks
│ │ │ ├── component.js
│ │ │ └── embed_languages.js
│ │ ├── bower.json
│ │ ├── test
│ │ │ └── moment
│ │ │ │ ├── leapyear.js
│ │ │ │ ├── string_prototype.js
│ │ │ │ ├── invalid.js
│ │ │ │ ├── is_moment.js
│ │ │ │ ├── days_in_month.js
│ │ │ │ └── normalizeUnits.js
│ │ ├── composer.json
│ │ ├── LICENSE
│ │ └── component.json
│ └── typogr
│ │ ├── .npmignore
│ │ ├── LICENSE
│ │ └── Makefile
├── contents
│ ├── archive.json
│ ├── feed.json
│ ├── assets
│ │ ├── images
│ │ │ ├── about.jpg
│ │ │ ├── finn.jpg
│ │ │ ├── jake.jpg
│ │ │ ├── lsp.jpg
│ │ │ ├── pic01.jpg
│ │ │ ├── breezy.jpg
│ │ │ ├── citadel.jpg
│ │ │ ├── iceking.jpg
│ │ │ ├── jamesii.jpg
│ │ │ ├── sadface.jpg
│ │ │ ├── wakeup.jpg
│ │ │ ├── bubblegum.jpg
│ │ │ ├── foodchain.jpg
│ │ │ ├── marceline.jpg
│ │ │ └── thetower.jpg
│ │ ├── css
│ │ │ ├── images
│ │ │ │ └── bg.png
│ │ │ └── ie
│ │ │ │ └── v8.css
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ └── characters
│ │ ├── jake.json
│ │ ├── lsp.json
│ │ ├── finn.json
│ │ ├── ice-king.json
│ │ ├── marceline.json
│ │ └── bubblegum.json
├── readme.md
├── package.json
├── templates
│ ├── index.jade
│ ├── partials
│ │ ├── header.jade
│ │ ├── head.jade
│ │ ├── footer.jade
│ │ └── homepagemiddle.jade
│ ├── article.jade
│ └── feed.jade
└── config.json
├── jekyllsite
├── .gitignore
├── images
│ ├── lsp.jpg
│ ├── about.jpg
│ ├── breezy.jpg
│ ├── finn.jpg
│ ├── jake.jpg
│ ├── pic01.jpg
│ ├── wakeup.jpg
│ ├── citadel.jpg
│ ├── iceking.jpg
│ ├── jamesii.jpg
│ ├── sadface.jpg
│ ├── thetower.jpg
│ ├── bubblegum.jpg
│ ├── foodchain.jpg
│ └── marceline.jpg
├── css
│ ├── images
│ │ └── bg.png
│ └── ie
│ │ └── v8.css
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── _layouts
│ ├── page.html
│ ├── post.html
│ └── default.html
├── _includes
│ ├── header.html
│ ├── head.html
│ └── footer.html
├── _config.yml
├── feed.xml
└── _data
│ └── characters.yaml
├── metalsmithsite
├── .gitignore
├── src
│ ├── index.html
│ ├── assets
│ │ ├── images
│ │ │ ├── lsp.jpg
│ │ │ ├── about.jpg
│ │ │ ├── breezy.jpg
│ │ │ ├── finn.jpg
│ │ │ ├── jake.jpg
│ │ │ ├── pic01.jpg
│ │ │ ├── wakeup.jpg
│ │ │ ├── citadel.jpg
│ │ │ ├── iceking.jpg
│ │ │ ├── jamesii.jpg
│ │ │ ├── sadface.jpg
│ │ │ ├── thetower.jpg
│ │ │ ├── bubblegum.jpg
│ │ │ ├── foodchain.jpg
│ │ │ └── marceline.jpg
│ │ ├── css
│ │ │ ├── images
│ │ │ │ └── bg.png
│ │ │ └── ie
│ │ │ │ └── v8.css
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ └── data
│ │ └── characters.yaml
├── layouts
│ ├── partials
│ │ ├── header.html
│ │ ├── head.html
│ │ └── footer.html
│ └── post.html
├── package.json
└── metalsmith.json
├── hexosite
├── scaffolds
│ ├── draft.md
│ ├── page.md
│ └── post.md
├── .gitignore
├── source
│ ├── assets
│ │ ├── images
│ │ │ ├── finn.jpg
│ │ │ ├── jake.jpg
│ │ │ ├── lsp.jpg
│ │ │ ├── about.jpg
│ │ │ ├── breezy.jpg
│ │ │ ├── pic01.jpg
│ │ │ ├── wakeup.jpg
│ │ │ ├── bubblegum.jpg
│ │ │ ├── citadel.jpg
│ │ │ ├── foodchain.jpg
│ │ │ ├── iceking.jpg
│ │ │ ├── jamesii.jpg
│ │ │ ├── marceline.jpg
│ │ │ ├── sadface.jpg
│ │ │ └── thetower.jpg
│ │ ├── css
│ │ │ ├── images
│ │ │ │ └── bg.png
│ │ │ └── ie
│ │ │ │ └── v8.css
│ │ └── fonts
│ │ │ ├── FontAwesome.otf
│ │ │ ├── fontawesome-webfont.eot
│ │ │ ├── fontawesome-webfont.ttf
│ │ │ └── fontawesome-webfont.woff
│ └── _data
│ │ └── characters.yaml
├── themes
│ └── advtime
│ │ ├── layout
│ │ ├── layout.ejs
│ │ ├── post.ejs
│ │ └── _partial
│ │ │ ├── header.ejs
│ │ │ ├── head.ejs
│ │ │ └── footer.ejs
│ │ └── _config.yml
└── package.json
├── sample-project.png
└── middlemansite
├── source
├── images
│ ├── lsp.jpg
│ ├── about.jpg
│ ├── breezy.jpg
│ ├── finn.jpg
│ ├── jake.jpg
│ ├── pic01.jpg
│ ├── wakeup.jpg
│ ├── citadel.jpg
│ ├── iceking.jpg
│ ├── jamesii.jpg
│ ├── sadface.jpg
│ ├── thetower.jpg
│ ├── bubblegum.jpg
│ ├── foodchain.jpg
│ └── marceline.jpg
├── fonts
│ ├── FontAwesome.otf
│ ├── fontawesome-webfont.eot
│ ├── fontawesome-webfont.ttf
│ └── fontawesome-webfont.woff
├── stylesheets
│ ├── images
│ │ └── bg.png
│ └── ie
│ │ └── v8.css
├── layouts
│ ├── layout.erb
│ └── post.erb
├── partials
│ ├── _header.erb
│ ├── _head.erb
│ └── _footer.erb
├── tag.html.erb
├── calendar.html.erb
└── feed.xml.builder
├── Gemfile
├── .gitignore
├── config.rb
└── data
└── characters.yaml
/POHTML/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
--------------------------------------------------------------------------------
/rootssite/assets/img/.keep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/wyamsite/.gitignore:
--------------------------------------------------------------------------------
1 | output/*
--------------------------------------------------------------------------------
/harpsite/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/harpsite/public/404.jade:
--------------------------------------------------------------------------------
1 | h1 404
--------------------------------------------------------------------------------
/harpsite_ejs/public/rss.xml.ejs:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/hugosite/public/2014/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/hugosite/public/404/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/hugosite/public/tags/index.vimrc:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/harpsite_ejs/.gitignore:
--------------------------------------------------------------------------------
1 | .DS_Store
2 |
--------------------------------------------------------------------------------
/hugosite/public/tags/vim/index.html:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/docpadsite/.gitignore:
--------------------------------------------------------------------------------
1 | out/
2 | .DS_Store
--------------------------------------------------------------------------------
/harpsite_ejs/public/404.ejs:
--------------------------------------------------------------------------------
1 |
10 |
11 | <%- @content %>
12 |
13 |
14 |
15 | <%- @partial('footer') %>
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/wyamsite/input/Shared/_post.cshtml:
--------------------------------------------------------------------------------
1 | @{
2 | Layout = @"_default.cshtml";
3 | }
4 |
5 |
6 | (http://timwoodcreates.com/)",
17 | "license": "MIT"
18 | }
19 |
--------------------------------------------------------------------------------
/harpsite_ejs/public/_partials/header.ejs:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/rootssite/data/site.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "Adventure Time!",
3 | "banner": "/img/about.jpg",
4 | "description": "Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen."
5 | }
6 |
--------------------------------------------------------------------------------
/middlemansite/source/partials/_header.erb:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/hexosite/themes/advtime/layout/_partial/header.ejs:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/rootssite/readme.md:
--------------------------------------------------------------------------------
1 | # rootssite
2 |
3 |
4 |
5 | ### Setup
6 |
7 | - make sure [node.js](http://nodejs.org) and [roots](http://roots.cx) are installed
8 | - clone this repo down and `cd` into the folder
9 | - run `npm install`
10 | - run `roots watch`
11 | - ???
12 | - get money
13 |
14 | ### Deploying
15 |
16 | - If you just want to compile the production build, run `roots compile -e production` and it will build to public.
17 | - To deploy your site with a single command, run `roots deploy -to XXX` with `XXX` being whichever [ship](https://github.com/carrot/ship#usage) deployer you want to use.
--------------------------------------------------------------------------------
/docpadsite/src/partials/header.html.eco:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/jekyllsite/_includes/header.html:
--------------------------------------------------------------------------------
1 |
2 |
20 |
--------------------------------------------------------------------------------
/wyamsite/input/Shared/partials/_header.cshtml:
--------------------------------------------------------------------------------
1 |
2 |
18 |
--------------------------------------------------------------------------------
/middlemansite/source/partials/_head.erb:
--------------------------------------------------------------------------------
1 |
2 | <%= site_title ' - ' + current_article.title unless current_article.nil? %>
3 |
4 |
5 |
6 |
7 | <%= javascript_include_tag "jquery.min", "skel.min", "skel-layers.min", "init" %>
8 | <%= stylesheet_link_tag "skel", "style", "style-desktop" %>
9 |
10 | <%= feed_tag :atom, "#{blog.options.prefix.to_s}/feed.xml", title: "Atom Feed" %>
11 |
--------------------------------------------------------------------------------
/rootssite/app.production.coffee:
--------------------------------------------------------------------------------
1 | axis = require 'axis'
2 | rupture = require 'rupture'
3 | autoprefixer = require 'autoprefixer-stylus'
4 | js_pipeline = require 'js-pipeline'
5 | css_pipeline = require 'css-pipeline'
6 |
7 | module.exports =
8 | ignores: ['readme.md', '**/layout.*', '**/_*', '.gitignore', 'ship.*conf']
9 |
10 | extensions: [
11 | js_pipeline(files: 'assets/js/*.coffee', out: 'js/build.js', minify: true, hash: true),
12 | css_pipeline(files: 'assets/css/*.styl', out: 'css/build.css', minify: true, hash: true)
13 | ]
14 |
15 | stylus:
16 | use: [axis(), rupture(), autoprefixer()]
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/moment/test/moment/string_prototype.js:
--------------------------------------------------------------------------------
1 | var moment = require("../../moment");
2 |
3 | exports.string_prototype = {
4 | "string prototype overrides call" : function (test) {
5 | test.expect(1);
6 |
7 | moment.lang('en');
8 | var prior = String.prototype.call, b;
9 | String.prototype.call = function () { return null; };
10 |
11 | b = moment(new Date(2011, 7, 28, 15, 25, 50, 125));
12 | test.equal(b.format('MMMM Do YYYY, h:mm a'), 'August 28th 2011, 3:25 pm');
13 |
14 | String.prototype.call = prior;
15 | test.done();
16 | }
17 |
18 | };
19 |
--------------------------------------------------------------------------------
/harpsite/public/posts/_layout.jade:
--------------------------------------------------------------------------------
1 | !!!
2 | html(lang="en")
3 | != partial("../_partials/head")
4 | body(class="page-#{ current.path[0] } #{ current.path.join('-') }")
5 | != partial("../_partials/header")
6 |
7 | div(id="main-wrapper")
8 | div(class="container")
9 | //Content
10 | article(class="box post")
11 | - var imagestyle = "background-image: url('"+banner+"');"
12 | div(class="image featured",style=imagestyle)
13 | header
14 | h2= title
15 | p= shortdesc
16 | !=yield
17 |
18 | != partial("../_partials/footer")
--------------------------------------------------------------------------------
/wintersmithsite/templates/article.jade:
--------------------------------------------------------------------------------
1 | doctype html
2 | html(lang="en")
3 | include ./partials/head
4 | body
5 | include ./partials/header
6 |
7 | div(id="main-wrapper")
8 | div(class="container")
9 | //Content
10 | article(class="box post")
11 | - var imagestyle = "background-image: url('"+page.metadata.banner+"');"
12 | div(class="image featured",style=imagestyle)
13 | header
14 | h2= page.title
15 | p= page.metadata.shortdesc
16 | section.content!= typogr(page.html).typogrify()
17 |
18 | include ./partials/footer
--------------------------------------------------------------------------------
/docpadsite/src/partials/characters.html.eco:
--------------------------------------------------------------------------------
1 |
2 |
3 |
6 |
7 | <% for character in @document.characters: %>
8 |
9 |
10 |
11 |
12 | <%- character.name %>
13 |
14 | <%- character.description %>
15 |
16 |
17 | <% end %>
18 |
19 |
20 |
--------------------------------------------------------------------------------
/middlemansite/source/tag.html.erb:
--------------------------------------------------------------------------------
1 | ---
2 | pageable: true
3 | per_page: 12
4 | ---
5 | Articles tagged '<%= tagname %>'
6 |
7 | <% if paginate && num_pages > 1 %>
8 | Page <%= page_number %> of <%= num_pages %>
9 |
10 | <% if prev_page %>
11 | <%= link_to 'Previous page', prev_page %>
12 | <% end %>
13 | <% end %>
14 |
15 |
16 | <% page_articles.each_with_index do |article, i| %>
17 | <%= link_to article.title, article %> <%= article.date.strftime('%b %e') %>
18 | <% end %>
19 |
20 |
21 | <% if paginate %>
22 | <% if next_page %>
23 | <%= link_to 'Next page', next_page %>
24 | <% end %>
25 | <% end %>
26 |
--------------------------------------------------------------------------------
/docpadsite/src/partials/head.html.eco:
--------------------------------------------------------------------------------
1 |
2 | <%= @getPreparedTitle() %>
3 |
4 |
5 |
6 |
7 | <%- @getBlock("styles").add(['/css/skel.css','/css/style.css','/css/style-desktop.css']).toHTML() %>
8 | <%- @getBlock("scripts").add(['/js/jquery.min.js','/js/skel.min.js','/js/skel-layers.min.js','/js/init.js']).toHTML() %>
9 |
10 |
--------------------------------------------------------------------------------
/metalsmithsite/layouts/post.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{> head}}
4 |
5 |
6 | {{> header}}
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 | {{ title }}
16 | {{ shortdesc }}
17 |
18 | {{{ contents }}}
19 |
20 |
21 |
22 | {{> footer}}
23 |
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/underscore/CONTRIBUTING.md:
--------------------------------------------------------------------------------
1 | ## How to contribute to Underscore.js
2 |
3 | * Before you open a ticket or send a pull request, [search](https://github.com/documentcloud/underscore/issues) for previous discussions about the same feature or issue. Add to the earlier ticket if you find one.
4 |
5 | * Before sending a pull request for a feature, be sure to have [tests](http://underscorejs.org/test/).
6 |
7 | * Use the same coding style as the rest of the [codebase](https://github.com/documentcloud/underscore/blob/master/underscore.js).
8 |
9 | * In your pull request, do not add documentation or re-build the minified `underscore-min.js` file. We'll do those things before cutting a new release.
10 |
--------------------------------------------------------------------------------
/hugosite/config.toml:
--------------------------------------------------------------------------------
1 | baseurl = ""
2 | languageCode = "en-us"
3 | title = "Adventure Time!"
4 |
5 | contentdir = "content"
6 | layoutdir = "layouts"
7 | publishdir = "public"
8 |
9 | [params]
10 | description= "Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen."
11 | banner= "/assets/images/about.jpg"
12 |
--------------------------------------------------------------------------------
/harpsite/public/_partials/head.jade:
--------------------------------------------------------------------------------
1 | head
2 | meta(charset="utf-8")
3 | meta(name="viewport", content="width=device-width, initial-scale=1.0")
4 | meta(name="keywords" content="adventure time,cartoon network,cartoons,finn,jake,princess bubblegum")
5 | title #{ site_title }
6 | script(src="/assets/js/jquery.min.js")
7 | script(src="/assets/js/skel.min.js")
8 | script(src="/assets/js/skel-layers.min.js")
9 | script(src="/assets/js/init.js")
10 | link(rel="stylesheet",href="/assets/css/skel.css")
11 | link(rel="stylesheet",href="/assets/css/style.css")
12 | link(rel="stylesheet",href="/assets/css/style-desktop.css")
13 | link(rel="alternate", type="application/rss+xml", title="#{ site_title } RSS", href="/rss.xml")
--------------------------------------------------------------------------------
/docpadsite/src/layouts/post.html.eco:
--------------------------------------------------------------------------------
1 |
2 | <%- @partial('head') %>
3 |
4 |
5 |
6 | <%- @partial('header') %>
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
18 | <%- @content %>
19 |
20 |
21 |
22 |
23 | <%- @partial('footer') %>
24 |
25 |
26 |
27 |
--------------------------------------------------------------------------------
/harpsite_ejs/public/posts/_layout.ejs:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | <%- partial("../_partials/head") %>
5 |
6 |
7 |
8 | <%- partial("../_partials/header") %>
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 | <%- title %>
18 | <%- shortdesc %>
19 |
20 | <%- yield %>
21 |
22 |
23 |
24 |
25 | <%- partial("../_partials/footer") %>
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/hugosite/layouts/_default/single.html:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | {{ partial "head.html" . }}
5 |
6 |
7 |
8 | {{ partial "header.html" . }}
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 | {{ .Title }}
18 | {{ .Params.shortdesc }}
19 |
20 | {{ .Content }}
21 |
22 |
23 |
24 |
25 | {{ partial "footer.html" . }}
26 |
27 |
28 |
29 |
30 |
--------------------------------------------------------------------------------
/middlemansite/source/layouts/post.erb:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 | <%= partial "partials/head" %>
5 |
6 |
7 |
8 | <%= partial "partials/header" %>
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
20 | <%= yield %>
21 |
22 |
23 |
24 |
25 | <%= partial "partials/footer" %>
26 |
27 |
28 |
29 |
--------------------------------------------------------------------------------
/wintersmithsite/templates/partials/head.jade:
--------------------------------------------------------------------------------
1 | head
2 | meta(charset="utf-8")
3 | meta(name="viewport", content="width=device-width, initial-scale=1.0")
4 | meta(name="keywords" content="adventure time,cartoon network,cartoons,finn,jake,princess bubblegum")
5 | - var pagetitle = locals.name
6 | if (page)
7 | - pagetitle += ' - ' + page.title
8 | title= pagetitle
9 | script(src="/assets/js/jquery.min.js")
10 | script(src="/assets/js/skel.min.js")
11 | script(src="/assets/js/skel-layers.min.js")
12 | script(src="/assets/js/init.js")
13 | link(rel="stylesheet",href="/assets/css/skel.css")
14 | link(rel="stylesheet",href="/assets/css/style.css")
15 | link(rel="stylesheet",href="/assets/css/style-desktop.css")
16 | link(rel="alternate", type="application/rss+xml", title="#{ site_title } RSS", href="/feed.xml")
--------------------------------------------------------------------------------
/jekyllsite/_config.yml:
--------------------------------------------------------------------------------
1 | # Site settings
2 | title: Adventure Time!
3 | email: brian.rinaldi@gmail.com
4 | banner: "/images/about.jpg"
5 | description: > # this means to ignore newlines until "baseurl:"
6 | Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen.
7 | baseurl: "" # the subpath of your site, e.g. /blog/
8 | url: "http://yourdomain.com" # the base hostname & protocol for your site
9 |
10 | # Build settings
11 | markdown: kramdown
12 |
13 | excerpt_separator: ""
--------------------------------------------------------------------------------
/harpsite/harp.json:
--------------------------------------------------------------------------------
1 | {
2 | "domains": [""],
3 | "globals": {
4 | "site_title": "Adventure Time!",
5 | "site_url": "http://example.com",
6 | "email": "brian.rinaldi@gmail.com",
7 | "banner": "/assets/images/about.jpg",
8 | "description": "Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen.",
9 | "disqus": {
10 | "enabled": false,
11 | "shortname": ""
12 | },
13 | "sitemap": {
14 | "enabled": false,
15 | "changefreq": "daily"
16 | }
17 | }
18 | }
--------------------------------------------------------------------------------
/harpsite_ejs/harp.json:
--------------------------------------------------------------------------------
1 | {
2 | "domains": [""],
3 | "globals": {
4 | "site_title": "Adventure Time!",
5 | "site_url": "http://example.com",
6 | "email": "brian.rinaldi@gmail.com",
7 | "banner": "/assets/images/about.jpg",
8 | "description": "Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen.",
9 | "disqus": {
10 | "enabled": false,
11 | "shortname": ""
12 | },
13 | "sitemap": {
14 | "enabled": false,
15 | "changefreq": "daily"
16 | }
17 | }
18 | }
--------------------------------------------------------------------------------
/middlemansite/source/calendar.html.erb:
--------------------------------------------------------------------------------
1 | ---
2 | pageable: true
3 | ---
4 | Archive for
5 | <% case page_type
6 | when 'day' %>
7 | <%= Date.new(year, month, day).strftime('%b %e %Y') %>
8 | <% when 'month' %>
9 | <%= Date.new(year, month, 1).strftime('%b %Y') %>
10 | <% when 'year' %>
11 | <%= year %>
12 | <% end %>
13 |
14 |
15 | <% if paginate && num_pages > 1 %>
16 | Page <%= page_number %> of <%= num_pages %>
17 |
18 | <% if prev_page %>
19 | <%= link_to 'Previous page', prev_page %>
20 | <% end %>
21 | <% end %>
22 |
23 |
24 | <% page_articles.each_with_index do |article, i| %>
25 | <%= link_to article.title, article %> <%= article.date.strftime('%b %e') %>
26 | <% end %>
27 |
28 |
29 | <% if paginate %>
30 | <% if next_page %>
31 | <%= link_to 'Next page', next_page %>
32 | <% end %>
33 | <% end %>
34 |
--------------------------------------------------------------------------------
/rootssite/views/layout.jade:
--------------------------------------------------------------------------------
1 | doctype html
2 | html
3 |
4 | head
5 | meta(charset='utf8')
6 | meta(http-equiv='X-UA-Compatible', content='IE=edge, chrome=1')
7 | meta(name='description', content='description of your site')
8 | meta(name='author', content= "author of the site")
9 |
10 | title= records.site.name
11 |
12 | script(src="/js/jquery.min.js")
13 | script(src="/js/skel.min.js")
14 | script(src="/js/skel-layers.min.js")
15 | script(src="/js/init.js")
16 |
17 | noscript
18 | link(rel="stylesheet", href="/css/skel.css")
19 | link(rel="stylesheet", href="/css/style.css")
20 | link(rel="stylesheet", href="/css/style-desktop.css")
21 |
22 | link(rel='stylesheet', href='/css/custom.css')
23 | body
24 | include ./includes/_header.jade
25 |
26 | #main-wrapper
27 | .container
28 | block content
29 |
30 | include ./includes/_footer.jade
31 |
32 |
--------------------------------------------------------------------------------
/hexosite/themes/advtime/layout/_partial/head.ejs:
--------------------------------------------------------------------------------
1 |
2 | <%- config.title %>
3 |
4 |
5 |
6 |
7 |
8 | <%- js(['assets/js/jquery.min.js','assets/js/skel.min.js','assets/js/skel-layers.min.js','assets/js/init.js']) -%>
9 | <%- css(['assets/css/skel.css','assets/css/style.css','assets/css/style-desktop.css']) -%>
10 |
11 | <% if (theme.rss){ %>
12 |
13 | <% } %>
14 |
--------------------------------------------------------------------------------
/wyamsite/input/Shared/partials/_head.cshtml:
--------------------------------------------------------------------------------
1 |
2 | @Model["title"]
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/rootssite/views/includes/_footer.jade:
--------------------------------------------------------------------------------
1 | #footer-wrapper
2 | section#footer.container
3 | .row
4 | .8u
5 | section
6 | header
7 | h2 More Episodes
8 | ul.dates
9 | each post in posts.byDate().slice(2,8)
10 | li
11 | span.date
12 | != dateFormat(post.date, "MMM []D[ ]")
13 | h3
14 | a(href=post.permalink)= post.title
15 | p= post.shortdesc
16 | .4u
17 | section
18 | header
19 | h2 What's this all about?
20 | a.image.featured(href="#")
21 | img(src= records.site.banner)
22 | p= records.site.description
23 | .row
24 | .12u
25 | #copyright
26 | ul.links
27 | li
28 | | ©
29 | = records.site.name
30 | | All rights reserved.
31 | li Design:
32 | a(href="http://html5up.net") HTML5 UP
33 |
--------------------------------------------------------------------------------
/harpsite_ejs/public/_partials/head.ejs:
--------------------------------------------------------------------------------
1 |
2 | <%- site_title %>
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/wintersmithsite/config.json:
--------------------------------------------------------------------------------
1 | {
2 | "locals": {
3 | "url": "http://localhost:8080",
4 | "name": "Adventure Time!",
5 | "owner": "Brian Rinaldi",
6 | "description": "Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen.",
7 | "banner": "/assets/images/about.jpg"
8 | },
9 | "plugins": [
10 | "./plugins/paginator.coffee"
11 | ],
12 | "require": {
13 | "moment": "moment",
14 | "_": "underscore",
15 | "typogr": "typogr"
16 | },
17 | "jade": {
18 | "pretty": true
19 | },
20 | "markdown": {
21 | "smartLists": true,
22 | "smartypants": true
23 | },
24 | "paginator": {
25 | "perPage": 3
26 | }
27 | }
28 |
--------------------------------------------------------------------------------
/metalsmithsite/layouts/partials/head.html:
--------------------------------------------------------------------------------
1 | {{title}}
2 |
3 |
4 | {{pageTitle}}
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
19 |
--------------------------------------------------------------------------------
/middlemansite/source/feed.xml.builder:
--------------------------------------------------------------------------------
1 | xml.instruct!
2 | xml.feed "xmlns" => "http://www.w3.org/2005/Atom" do
3 | site_url = "http://blog.url.com/"
4 | xml.title "Blog Name"
5 | xml.subtitle "Blog subtitle"
6 | xml.id URI.join(site_url, blog.options.prefix.to_s)
7 | xml.link "href" => URI.join(site_url, blog.options.prefix.to_s)
8 | xml.link "href" => URI.join(site_url, current_page.path), "rel" => "self"
9 | xml.updated(blog.articles.first.date.to_time.iso8601) unless blog.articles.empty?
10 | xml.author { xml.name "Blog Author" }
11 |
12 | blog.articles[0..5].each do |article|
13 | xml.entry do
14 | xml.title article.title
15 | xml.link "rel" => "alternate", "href" => URI.join(site_url, article.url)
16 | xml.id URI.join(site_url, article.url)
17 | xml.published article.date.to_time.iso8601
18 | xml.updated File.mtime(article.source_file).iso8601
19 | xml.author { xml.name "Article Author" }
20 | # xml.summary article.summary, "type" => "html"
21 | xml.content article.body, "type" => "html"
22 | end
23 | end
24 | end
25 |
--------------------------------------------------------------------------------
/wintersmithsite/templates/feed.jade:
--------------------------------------------------------------------------------
1 | doctype xml
2 | rss(version='2.0',
3 | xmlns:content='http://purl.org/rss/1.0/modules/content/',
4 | xmlns:wfw='http://wellformedweb.org/CommentAPI/',
5 | xmlns:dc='http://purl.org/dc/elements/1.1/'
6 | xmlns:atom='http://www.w3.org/2005/Atom')
7 | channel
8 | - var articles = env.helpers.getArticles(contents);
9 | title= locals.name
10 | atom:link(href=locals.url + '/feed.xml', rel='self', type='application/rss+xml')
11 | link= locals.url
12 | description= locals.description
13 | pubDate= articles[0].rfc822date
14 | generator Wintersmith - https://github.com/jnordberg/wintersmith
15 | language en
16 | for article in articles
17 | - var permalink = locals.url + article.url
18 | item
19 | title= article.title
20 | link= permalink
21 | pubDate= article.rfc822date
22 | guid(isPermaLink='true')= permalink
23 | author= article.author
24 | //- passing locals.url resolves all relative urls to absolute
25 | description= article.getHtml(locals.url)
26 |
--------------------------------------------------------------------------------
/wyamsite/config.wyam:
--------------------------------------------------------------------------------
1 | #n Wyam.Yaml
2 | #n Wyam.Markdown
3 | #n Wyam.Razor
4 | #n Wyam.Html
5 |
6 | InitialMetadata["title"] = "Adventure Time!";
7 | InitialMetadata["description"] = "Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen.";
8 | InitialMetadata["banner"] = "/images/about.jpg";
9 |
10 | Pipelines.Add("Characters",
11 | ReadFiles("**/*.yaml"),
12 | Yaml()
13 | );
14 |
15 | Pipelines.Add("Content",
16 | ReadFiles("**/*.md"),
17 | FrontMatter(Yaml()),
18 | Markdown(),
19 | Excerpt(),
20 | Concat(
21 | ReadFiles("index.cshtml")
22 | ),
23 | Razor(),
24 | WriteFiles(".html")
25 | );
26 |
27 | Pipelines.Add("Resources",
28 | CopyFiles("**/*{!.cshtml,!.md,!.yaml,}")
29 | );
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/moment/test/moment/invalid.js:
--------------------------------------------------------------------------------
1 | var moment = require("../../moment");
2 |
3 | exports.invalid = {
4 | "invalid" : function (test) {
5 | var m = moment.invalid();
6 | test.equals(m.isValid(), false);
7 | test.equals(m.parsingFlags().userInvalidated, true);
8 | test.ok(isNaN(m.valueOf()));
9 | test.done();
10 | },
11 |
12 | "invalid with existing flag" : function (test) {
13 | var m = moment.invalid({invalidMonth : 'whatchamacallit'});
14 | test.equals(m.isValid(), false);
15 | test.equals(m.parsingFlags().userInvalidated, false);
16 | test.equals(m.parsingFlags().invalidMonth, 'whatchamacallit');
17 | test.ok(isNaN(m.valueOf()));
18 | test.done();
19 | },
20 |
21 | "invalid with custom flag" : function (test) {
22 | var m = moment.invalid({tooBusyWith : 'reiculating splines'});
23 | test.equals(m.isValid(), false);
24 | test.equals(m.parsingFlags().userInvalidated, false);
25 | test.equals(m.parsingFlags().tooBusyWith, 'reiculating splines');
26 | test.ok(isNaN(m.valueOf()));
27 | test.done();
28 | }
29 | };
30 |
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/underscore/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2009-2013 Jeremy Ashkenas, DocumentCloud
2 |
3 | Permission is hereby granted, free of charge, to any person
4 | obtaining a copy of this software and associated documentation
5 | files (the "Software"), to deal in the Software without
6 | restriction, including without limitation the rights to use,
7 | copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the
9 | Software is furnished to do so, subject to the following
10 | conditions:
11 |
12 | The above copyright notice and this permission notice shall be
13 | included in all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/metalsmithsite/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "metalsmithsite",
3 | "version": "1.0.0",
4 | "description": "A metalsmith example site.",
5 | "main": "index.js",
6 | "dependencies": {},
7 | "devDependencies": {
8 | "handlebars": "^4.0.5",
9 | "metalsmith": "^2.1.0",
10 | "metalsmith-assets": "^0.1.0",
11 | "metalsmith-collections": "^0.7.0",
12 | "metalsmith-date-formatter": "^1.0.2",
13 | "metalsmith-feed": "^0.2.0",
14 | "metalsmith-layouts": "^1.6.4",
15 | "metalsmith-markdown": "^0.2.1",
16 | "metalsmith-metadata": "0.0.4",
17 | "metalsmith-more": "^0.2.0",
18 | "metalsmith-page-titles": "^1.0.2",
19 | "metalsmith-permalinks": "^0.5.0",
20 | "metalsmith-serve": "0.0.7"
21 | },
22 | "scripts": {
23 | "test": "echo \"Error: no test specified\" && exit 1"
24 | },
25 | "repository": {
26 | "type": "git",
27 | "url": "git+https://github.com/remotesynth/Static-Site-Samples.git"
28 | },
29 | "author": "Brian Rinaldi",
30 | "license": "ISC",
31 | "bugs": {
32 | "url": "https://github.com/remotesynth/Static-Site-Samples/issues"
33 | },
34 | "homepage": "https://github.com/remotesynth/Static-Site-Samples#readme"
35 | }
36 |
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/moment/LICENSE:
--------------------------------------------------------------------------------
1 | Copyright (c) 2011-2013 Tim Wood, Iskren Chernev, Moment.js contributors
2 |
3 | Permission is hereby granted, free of charge, to any person
4 | obtaining a copy of this software and associated documentation
5 | files (the "Software"), to deal in the Software without
6 | restriction, including without limitation the rights to use,
7 | copy, modify, merge, publish, distribute, sublicense, and/or sell
8 | copies of the Software, and to permit persons to whom the
9 | Software is furnished to do so, subject to the following
10 | conditions:
11 |
12 | The above copyright notice and this permission notice shall be
13 | included in all copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
16 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
17 | OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
18 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
19 | HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
20 | WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
21 | FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 | OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/typogr/LICENSE:
--------------------------------------------------------------------------------
1 | (The MIT License)
2 |
3 | Copyright (c) 2011 Eugene Kalinin
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining
6 | a copy of this software and associated documentation files (the
7 | 'Software'), to deal in the Software without restriction, including
8 | without limitation the rights to use, copy, modify, merge, publish,
9 | distribute, sublicense, and/or sell copies of the Software, and to
10 | permit persons to whom the Software is furnished to do so, subject to
11 | the following conditions:
12 |
13 | The above copyright notice and this permission notice shall be
14 | included in all copies or substantial portions of the Software.
15 |
16 | THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND,
17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
19 | IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY
20 | CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
21 | TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
22 | SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
23 |
--------------------------------------------------------------------------------
/rootssite/views/index.jade:
--------------------------------------------------------------------------------
1 | extends layout
2 |
3 | block content
4 | .row
5 | .12u
6 | section
7 | header.major
8 | h2 Characters
9 |
10 | .row
11 | - each character in records.characters.data
12 | .4u
13 | .box
14 | span.image.featured
15 | img(src=character.image)
16 | header
17 | h3= character.name
18 | p= character.description
19 |
20 | .row
21 | .12u
22 | section
23 | header.major
24 | h2 Recent Episodes
25 | div.row
26 | each post in posts.byDate().slice(0,2)
27 | .6u
28 | section.box
29 | a.image.featured(href=post.permalink)
30 | img(src= post.banner)
31 | header
32 | h3= post.title
33 | p= "Posted " + dateFormat(post.date, 'LL')
34 | != postExcerpt(post.body, 250)
35 | footer
36 | ul.actions
37 | li
38 | a.button.icon.fa-file-text(href= post.permalink) Continue Reading
39 |
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/underscore/README.md:
--------------------------------------------------------------------------------
1 | __
2 | /\ \ __
3 | __ __ ___ \_\ \ __ _ __ ____ ___ ___ _ __ __ /\_\ ____
4 | /\ \/\ \ /' _ `\ /'_ \ /'__`\/\ __\/ ,__\ / ___\ / __`\/\ __\/'__`\ \/\ \ /',__\
5 | \ \ \_\ \/\ \/\ \/\ \ \ \/\ __/\ \ \//\__, `\/\ \__//\ \ \ \ \ \//\ __/ __ \ \ \/\__, `\
6 | \ \____/\ \_\ \_\ \___,_\ \____\\ \_\\/\____/\ \____\ \____/\ \_\\ \____\/\_\ _\ \ \/\____/
7 | \/___/ \/_/\/_/\/__,_ /\/____/ \/_/ \/___/ \/____/\/___/ \/_/ \/____/\/_//\ \_\ \/___/
8 | \ \____/
9 | \/___/
10 |
11 | Underscore.js is a utility-belt library for JavaScript that provides
12 | support for the usual functional suspects (each, map, reduce, filter...)
13 | without extending any core JavaScript objects.
14 |
15 | For Docs, License, Tests, and pre-packed downloads, see:
16 | http://underscorejs.org
17 |
18 | Many thanks to our contributors:
19 | https://github.com/documentcloud/underscore/contributors
20 |
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/moment/test/moment/is_moment.js:
--------------------------------------------------------------------------------
1 | var moment = require('../../moment');
2 |
3 | exports.is_moment = {
4 | "is moment object": function (test) {
5 | test.expect(11);
6 |
7 | var MyObj = function () {};
8 | MyObj.prototype.toDate = function () {
9 | return new Date();
10 | };
11 |
12 | test.ok(moment.isMoment(moment()), 'simple moment object');
13 | test.ok(moment.isMoment(moment('invalid date')), 'invalid moment object');
14 |
15 | test.ok(!moment.isMoment(new MyObj()), 'myObj is not moment object');
16 | test.ok(!moment.isMoment(moment), 'moment function is not moment object');
17 | test.ok(!moment.isMoment(new Date()), 'date object is not moment object');
18 | test.ok(!moment.isMoment(Object), 'Object is not moment object');
19 | test.ok(!moment.isMoment('foo'), 'string is not moment object');
20 | test.ok(!moment.isMoment(1), 'number is not moment object');
21 | test.ok(!moment.isMoment(NaN), 'NaN is not moment object');
22 | test.ok(!moment.isMoment(null), 'null is not moment object');
23 | test.ok(!moment.isMoment(undefined), 'undefined is not moment object');
24 |
25 | test.done();
26 | }
27 | };
28 |
--------------------------------------------------------------------------------
/hugosite/layouts/partials/head.html:
--------------------------------------------------------------------------------
1 |
2 | {{ .Site.Title }}
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
--------------------------------------------------------------------------------
/rootssite/app.coffee:
--------------------------------------------------------------------------------
1 | axis = require 'axis'
2 | rupture = require 'rupture'
3 | autoprefixer = require 'autoprefixer-stylus'
4 | js_pipeline = require 'js-pipeline'
5 | css_pipeline = require 'css-pipeline'
6 | records = require 'roots-records'
7 | posts = require 'roots-posts'
8 | excerpt = require 'html-excerpt'
9 | moment = require 'moment'
10 |
11 | monthNames = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ]
12 |
13 | module.exports =
14 | ignores: ['readme.md', '**/layout.*', '**/_*', '.gitignore', 'ship.*conf']
15 |
16 | locals:
17 | postExcerpt: (html, length, ellipsis) ->
18 | excerpt.text(html, length || 100, ellipsis || '...')
19 | dateFormat: (date, format) ->
20 | moment(date).format(format)
21 |
22 |
23 | extensions: [
24 | records(
25 | characters: { file: "data/characters.json" }
26 | site: { file: "data/site.json" }
27 | ),
28 | posts(
29 | folder: 'posts', layout: 'post'
30 | ),
31 | js_pipeline(files: 'assets/js/*.coffee'),
32 | css_pipeline(files: 'assets/css/*.styl')
33 | ]
34 |
35 | stylus:
36 | use: [axis(), rupture(), autoprefixer()]
37 | sourcemap: true
38 |
39 | 'coffee-script':
40 | sourcemap: true
41 |
42 | jade:
43 | pretty: true
44 |
--------------------------------------------------------------------------------
/middlemansite/config.rb:
--------------------------------------------------------------------------------
1 | ###
2 | # Blog settings
3 | ###
4 |
5 | # Time.zone = "UTC"
6 |
7 | activate :blog do |blog|
8 | # Matcher for blog source files
9 | blog.sources = "posts/{year}-{month}-{day}-{title}.html"
10 | blog.summary_separator = ""
11 | blog.tag_template = "tag.html"
12 | blog.calendar_template = "calendar.html"
13 |
14 | end
15 |
16 | page "/feed.xml", layout: false
17 |
18 | # Reload the browser automatically whenever files change
19 | activate :livereload
20 |
21 | # Methods defined in the helpers block are available in templates
22 | # helpers do
23 | # def some_helper
24 | # "Helping"
25 | # end
26 | # end
27 |
28 | set :css_dir, 'stylesheets'
29 |
30 | set :js_dir, 'javascripts'
31 |
32 | set :images_dir, 'images'
33 |
34 | set :site_title, 'Adventure Time!'
35 | set :banner, '/images/about.jpg'
36 | set :description, 'Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen.'
37 |
--------------------------------------------------------------------------------
/wyamsite/input/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/POHTML/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/jekyllsite/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/docpadsite/src/render/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/harpsite/public/assets/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/hexosite/source/assets/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/hugosite/public/assets/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/hugosite/static/assets/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/harpsite_ejs/public/assets/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/metalsmithsite/src/assets/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/middlemansite/source/stylesheets/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/wintersmithsite/contents/assets/css/ie/v8.css:
--------------------------------------------------------------------------------
1 | /*
2 | Dopetrope by HTML5 UP
3 | html5up.net | @n33co
4 | Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
5 | */
6 |
7 | /*********************************************************************************/
8 | /* Basic */
9 | /*********************************************************************************/
10 |
11 | form input[type=text],
12 | form input[type=password],
13 | form select,
14 | form textarea,
15 | input[type="button"],
16 | input[type="submit"],
17 | input[type="reset"],
18 | .button,
19 | ul.social li a,
20 | .icon.featured,
21 | #copyright .links,
22 | #nav > ul > li > a,
23 | .dropotron
24 | {
25 | position: relative;
26 | -ms-behavior: url('css/ie/PIE.htc');
27 | }
28 |
29 | .dropotron.level-0
30 | {
31 | box-shadow: none !important;
32 | }
33 |
34 | /*********************************************************************************/
35 | /* Banner */
36 | /*********************************************************************************/
37 |
38 | #banner
39 | {
40 | background-position: auto;
41 | background-size: contain;
42 | -ms-behavior: url('css/ie/backgroundsize.min.htc');
43 | }
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/moment/test/moment/days_in_month.js:
--------------------------------------------------------------------------------
1 | var moment = require("../../moment");
2 |
3 | exports.days_in_month = {
4 | "days in month" : function (test) {
5 | test.expect(24);
6 | var months = [31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31], i;
7 | for (i = 0; i < 12; i++) {
8 | test.equal(moment([2012, i]).daysInMonth(),
9 | months[i],
10 | moment([2012, i]).format('L') + " should have " + months[i] + " days. (beginning of month " + i + ')');
11 | }
12 | for (i = 0; i < 12; i++) {
13 | test.equal(moment([2012, i, months[i]]).daysInMonth(),
14 | months[i],
15 | moment([2012, i, months[i]]).format('L') + " should have " + months[i] + " days. (end of month " + i + ')');
16 | }
17 | test.done();
18 | },
19 |
20 | "days in month leap years" : function (test) {
21 | test.expect(4);
22 | test.equal(moment([2010, 1]).daysInMonth(), 28, "Feb 2010 should have 28 days");
23 | test.equal(moment([2100, 1]).daysInMonth(), 28, "Feb 2100 should have 28 days");
24 | test.equal(moment([2008, 1]).daysInMonth(), 29, "Feb 2008 should have 29 days");
25 | test.equal(moment([2000, 1]).daysInMonth(), 29, "Feb 2000 should have 29 days");
26 | test.done();
27 | }
28 | };
29 |
--------------------------------------------------------------------------------
/hugosite/public/sitemap.xml:
--------------------------------------------------------------------------------
1 |
2 |
3 |
4 |
5 | http://localhost:1313/
6 | 2014-06-12T00:00:00+00:00
7 | 0
8 |
9 |
10 |
11 | http://localhost:1313/2014/06/season-6-food-chain/
12 | 2014-06-12T00:00:00+00:00
13 |
14 |
15 |
16 | http://localhost:1313/2014/06/season-6-breezy/
17 | 2014-06-05T00:00:00+00:00
18 |
19 |
20 |
21 | http://localhost:1313/2014/05/season-6-sad-face/
22 | 2014-05-12T00:00:00+00:00
23 |
24 |
25 |
26 | http://localhost:1313/2014/05/season-6-the-tower/
27 | 2014-05-05T00:00:00+00:00
28 |
29 |
30 |
31 | http://localhost:1313/2014/04/season-6-james-ii/
32 | 2014-04-28T00:00:00+00:00
33 |
34 |
35 |
36 | http://localhost:1313/2014/04/season-6-escape-the-citadel/
37 | 2014-04-21T00:00:00+00:00
38 |
39 |
40 |
41 | http://localhost:1313/2014/04/season-6-wake-up/
42 | 2014-04-21T00:00:00+00:00
43 |
44 |
45 |
--------------------------------------------------------------------------------
/jekyllsite/feed.xml:
--------------------------------------------------------------------------------
1 | ---
2 | layout: null
3 | ---
4 |
5 |
6 |
7 | {{ site.title | xml_escape }}
8 | {{ site.description | xml_escape }}
9 | {{ site.url }}{{ site.baseurl }}/
10 |
11 | {{ site.time | date_to_rfc822 }}
12 | {{ site.time | date_to_rfc822 }}
13 | Jekyll v{{ jekyll.version }}
14 | {% for post in site.posts limit:10 %}
15 | -
16 |
{{ post.title | xml_escape }}
17 | {{ post.content | xml_escape }}
18 | {{ post.date | date_to_rfc822 }}
19 | {{ post.url | prepend: site.baseurl | prepend: site.url }}
20 | {{ post.url | prepend: site.baseurl | prepend: site.url }}
21 | {% for tag in post.tags %}
22 | {{ tag | xml_escape }}
23 | {% endfor %}
24 | {% for cat in post.categories %}
25 | {{ cat | xml_escape }}
26 | {% endfor %}
27 |
28 | {% endfor %}
29 |
30 |
31 |
--------------------------------------------------------------------------------
/jekyllsite/_data/characters.yaml:
--------------------------------------------------------------------------------
1 | - name: "Finn the Human"
2 | image: "/images/finn.jpg"
3 | description: "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things."
4 | - name: "Jake the Dog"
5 | image: "/images/jake.jpg"
6 | description: "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog."
7 | - name: "Princess Bubblegum"
8 | image: "/images/bubblegum.jpg"
9 | description: "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo."
10 | - name: "Ice King"
11 | image: "/images/iceking.jpg"
12 | description: "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose."
13 | - name: "Lumpy Space Princess"
14 | image: "/images/lsp.jpg"
15 | description: "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone."
16 | - name: "Marceline"
17 | image: "/images/marceline.jpg"
18 | description: "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic."
--------------------------------------------------------------------------------
/middlemansite/data/characters.yaml:
--------------------------------------------------------------------------------
1 | - name: "Finn the Human"
2 | image: "/images/finn.jpg"
3 | description: "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things."
4 | - name: "Jake the Dog"
5 | image: "/images/jake.jpg"
6 | description: "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog."
7 | - name: "Princess Bubblegum"
8 | image: "/images/bubblegum.jpg"
9 | description: "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo."
10 | - name: "Ice King"
11 | image: "/images/iceking.jpg"
12 | description: "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose."
13 | - name: "Lumpy Space Princess"
14 | image: "/images/lsp.jpg"
15 | description: "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone."
16 | - name: "Marceline"
17 | image: "/images/marceline.jpg"
18 | description: "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic."
--------------------------------------------------------------------------------
/wyamsite/input/characters.yaml:
--------------------------------------------------------------------------------
1 | - name: "Finn the Human"
2 | image: "/images/finn.jpg"
3 | description: "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things."
4 | - name: "Jake the Dog"
5 | image: "/images/jake.jpg"
6 | description: "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog."
7 | - name: "Princess Bubblegum"
8 | image: "/images/bubblegum.jpg"
9 | description: "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo."
10 | - name: "Ice King"
11 | image: "/images/iceking.jpg"
12 | description: "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose."
13 | - name: "Lumpy Space Princess"
14 | image: "/images/lsp.jpg"
15 | description: "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone."
16 | - name: "Marceline"
17 | image: "/images/marceline.jpg"
18 | description: "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic."
--------------------------------------------------------------------------------
/metalsmithsite/src/data/characters.yaml:
--------------------------------------------------------------------------------
1 | - name: "Finn the Human"
2 | image: "/images/finn.jpg"
3 | description: "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things."
4 | - name: "Jake the Dog"
5 | image: "/images/jake.jpg"
6 | description: "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog."
7 | - name: "Princess Bubblegum"
8 | image: "/images/bubblegum.jpg"
9 | description: "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo."
10 | - name: "Ice King"
11 | image: "/images/iceking.jpg"
12 | description: "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose."
13 | - name: "Lumpy Space Princess"
14 | image: "/images/lsp.jpg"
15 | description: "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone."
16 | - name: "Marceline"
17 | image: "/images/marceline.jpg"
18 | description: "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic."
--------------------------------------------------------------------------------
/hexosite/source/_data/characters.yaml:
--------------------------------------------------------------------------------
1 | - name: "Finn the Human"
2 | image: "/assets/images/finn.jpg"
3 | description: "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things."
4 | - name: "Jake the Dog"
5 | image: "/assets/images/jake.jpg"
6 | description: "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog."
7 | - name: "Princess Bubblegum"
8 | image: "/assets/images/bubblegum.jpg"
9 | description: "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo."
10 | - name: "Ice King"
11 | image: "/assets/images/iceking.jpg"
12 | description: "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose."
13 | - name: "Lumpy Space Princess"
14 | image: "/assets/images/lsp.jpg"
15 | description: "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone."
16 | - name: "Marceline"
17 | image: "/assets/images/marceline.jpg"
18 | description: "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic."
--------------------------------------------------------------------------------
/docpadsite/src/render/data/characters.json.yaml:
--------------------------------------------------------------------------------
1 | characters:
2 | - name: "Finn the Human"
3 | image: "/images/finn.jpg"
4 | description: "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things."
5 | - name: "Jake the Dog"
6 | image: "/images/jake.jpg"
7 | description: "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog."
8 | - name: "Princess Bubblegum"
9 | image: "/images/bubblegum.jpg"
10 | description: "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo."
11 | - name: "Ice King"
12 | image: "/images/iceking.jpg"
13 | description: "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose."
14 | - name: "Lumpy Space Princess"
15 | image: "/images/lsp.jpg"
16 | description: "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone."
17 | - name: "Marceline"
18 | image: "/images/marceline.jpg"
19 | description: "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic."
--------------------------------------------------------------------------------
/hugosite/data/characters.toml:
--------------------------------------------------------------------------------
1 | [[characters]]
2 | name= "Finn the Human"
3 | image= "assets/images/finn.jpg"
4 | description= "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things."
5 | [[characters]]
6 | name= "Jake the Dog"
7 | image= "assets/images/jake.jpg"
8 | description= "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog."
9 | [[characters]]
10 | name= "Princess Bubblegum"
11 | image= "assets/images/bubblegum.jpg"
12 | description= "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo."
13 | [[characters]]
14 | name= "Ice King"
15 | image= "assets/images/iceking.jpg"
16 | description= "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose."
17 | [[characters]]
18 | name= "Lumpy Space Princess"
19 | image= "assets/images/lsp.jpg"
20 | description= "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone."
21 | [[characters]]
22 | name= "Marceline"
23 | image= "assets/images/marceline.jpg"
24 | description= "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic."
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/typogr/Makefile:
--------------------------------------------------------------------------------
1 | .PHONY: deploy deploy-github deploy-npm test
2 |
3 | VERSIONS_COUNT=`grep -E 'version' *.js package.json | grep -E -o '[0-9]\.[0-9]\.[0-9]' | uniq | wc -l`
4 | GIT_CHANGES_COUNT=`git status --short 2> /dev/null | wc -l`
5 |
6 | lint:
7 | @jslint typogr.js
8 |
9 | #test: lint
10 | test:
11 | @expresso test/typogr.test.js
12 |
13 | versions: minify
14 | @grep -E "version" typogr.js package.json |\
15 | grep -E '[0-9]\.[0-9]\.[0-9]' |\
16 | sed -r 's/\s*"?version"?:\s*/\t-->\t/gi' |\
17 | sed -r 's/"//gi' |\
18 | sed -r "s/,|;|'//gi" |\
19 | sed -r 's/\s*typogr.version\ =\s*/\t-->\t/gi'
20 | @grep -E -o '[0-9]\.[0-9]\.[0-9]' typogr.min.js |\
21 | awk '{ print "typogr.min.js\t-->\t" $$1}'
22 |
23 | check-version:
24 | @if [ "$(VERSIONS_COUNT)" != "1" ]; then\
25 | echo "\n\tVersions in *.js and *.json are different!\n";\
26 | exit 1; fi
27 |
28 | check-changes:
29 | @if [ "$(GIT_CHANGES_COUNT)" != "0" ]; then\
30 | echo "\n\tIn the repository there are unsaved changes\n";\
31 | exit 1; fi
32 |
33 | minify:
34 | @uglifyjs --output typogr.min.js typogr.js
35 |
36 | deploy-github:
37 | git push --tags origin master
38 |
39 | deploy-npm:
40 | npm publish
41 |
42 | deploy: minify check-changes check-version test deploy-npm deploy-github
43 |
44 | env:
45 | @rm -rf pyenv && rm -rf nodeenv && \
46 | virtualenv pyenv && \
47 | . pyenv/bin/activate && \
48 | pip install nodeenv && \
49 | nodeenv -j 4 nodeenv && \
50 | . nodeenv/bin/activate && \
51 | npm install -g
52 |
--------------------------------------------------------------------------------
/jekyllsite/_includes/head.html:
--------------------------------------------------------------------------------
1 |
2 | {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}
3 |
4 |
5 |
6 |
7 |
8 |
9 |
10 |
11 |
12 |
13 |
14 |
15 |
16 |
17 |
18 |
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/underscore/package.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "underscore",
3 | "description": "JavaScript's functional programming helper library.",
4 | "homepage": "http://underscorejs.org",
5 | "keywords": [
6 | "util",
7 | "functional",
8 | "server",
9 | "client",
10 | "browser"
11 | ],
12 | "author": {
13 | "name": "Jeremy Ashkenas",
14 | "email": "jeremy@documentcloud.org"
15 | },
16 | "repository": {
17 | "type": "git",
18 | "url": "git://github.com/documentcloud/underscore.git"
19 | },
20 | "main": "underscore.js",
21 | "version": "1.4.4",
22 | "devDependencies": {
23 | "phantomjs": "0.2.2"
24 | },
25 | "scripts": {
26 | "test": "phantomjs test/vendor/runner.js test/index.html?noglobals=true"
27 | },
28 | "_id": "underscore@1.4.4",
29 | "dist": {
30 | "shasum": "61a6a32010622afa07963bf325203cf12239d604",
31 | "tarball": "http://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz"
32 | },
33 | "_npmVersion": "1.1.63",
34 | "_npmUser": {
35 | "name": "jashkenas",
36 | "email": "jashkenas@gmail.com"
37 | },
38 | "maintainers": [
39 | {
40 | "name": "jashkenas",
41 | "email": "jashkenas@gmail.com"
42 | }
43 | ],
44 | "directories": {},
45 | "_shasum": "61a6a32010622afa07963bf325203cf12239d604",
46 | "_from": "underscore@1.4.x",
47 | "_resolved": "https://registry.npmjs.org/underscore/-/underscore-1.4.4.tgz",
48 | "bugs": {
49 | "url": "https://github.com/documentcloud/underscore/issues"
50 | },
51 | "readme": "ERROR: No README data found!"
52 | }
53 |
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/moment/component.json:
--------------------------------------------------------------------------------
1 | {
2 | "name": "moment",
3 | "version": "2.3.1",
4 | "main": "moment.js",
5 | "description": "Parse, validate, manipulate, and display dates in javascript.",
6 | "files": [
7 | "moment.js",
8 | "lang/ar-ma.js",
9 | "lang/ar.js",
10 | "lang/bg.js",
11 | "lang/br.js",
12 | "lang/bs.js",
13 | "lang/ca.js",
14 | "lang/cs.js",
15 | "lang/cv.js",
16 | "lang/da.js",
17 | "lang/de.js",
18 | "lang/el.js",
19 | "lang/en-au.js",
20 | "lang/en-ca.js",
21 | "lang/en-gb.js",
22 | "lang/eo.js",
23 | "lang/es.js",
24 | "lang/et.js",
25 | "lang/eu.js",
26 | "lang/fa.js",
27 | "lang/fi.js",
28 | "lang/fr-ca.js",
29 | "lang/fr.js",
30 | "lang/gl.js",
31 | "lang/he.js",
32 | "lang/hi.js",
33 | "lang/hr.js",
34 | "lang/hu.js",
35 | "lang/id.js",
36 | "lang/is.js",
37 | "lang/it.js",
38 | "lang/ja.js",
39 | "lang/ka.js",
40 | "lang/ko.js",
41 | "lang/lt.js",
42 | "lang/lv.js",
43 | "lang/ml.js",
44 | "lang/mr.js",
45 | "lang/ms-my.js",
46 | "lang/nb.js",
47 | "lang/ne.js",
48 | "lang/nl.js",
49 | "lang/nn.js",
50 | "lang/pl.js",
51 | "lang/pt-br.js",
52 | "lang/pt.js",
53 | "lang/ro.js",
54 | "lang/ru.js",
55 | "lang/sk.js",
56 | "lang/sl.js",
57 | "lang/sq.js",
58 | "lang/sv.js",
59 | "lang/th.js",
60 | "lang/tr.js",
61 | "lang/tzm-la.js",
62 | "lang/tzm.js",
63 | "lang/uk.js",
64 | "lang/uz.js",
65 | "lang/vn.js",
66 | "lang/zh-cn.js",
67 | "lang/zh-tw.js"
68 | ]
69 | }
--------------------------------------------------------------------------------
/rootssite/data/characters.json:
--------------------------------------------------------------------------------
1 | {
2 | "data": [
3 | {
4 | "name": "Finn the Human",
5 | "image": "/img/finn.jpg",
6 | "description": "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things."
7 | },
8 | {
9 | "name": "Jake the Dog",
10 | "image": "/img/jake.jpg",
11 | "description": "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog."
12 | },
13 | {
14 | "name": "Princess Bubblegum",
15 | "image": "/img/bubblegum.jpg",
16 | "description": "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo."
17 | },
18 | {
19 | "name": "Ice King",
20 | "image": "/img/iceking.jpg",
21 | "description": "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose."
22 | },
23 | {
24 | "name": "Lumpy Space Princess",
25 | "image": "/img/lsp.jpg",
26 | "description": "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone."
27 | },
28 | {
29 | "name": "Marceline",
30 | "image": "/img/marceline.jpg",
31 | "description": "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic."
32 | }
33 | ]
34 | }
35 |
--------------------------------------------------------------------------------
/wintersmithsite/templates/partials/footer.jade:
--------------------------------------------------------------------------------
1 | //Footer
2 | div(id="footer-wrapper")
3 | section(id="footer",class="container")
4 | div(class="row")
5 | div(class="8u")
6 | section
7 | header
8 | h2 More Episodes
9 | ul(class="dates")
10 | - var i=0
11 | - var articles = env.helpers.getArticles(contents);
12 | each article in articles
13 | -i++
14 | if (i>2) && (i<8)
15 | li
16 | span(class="date")
17 | !=moment.utc(article.date).format('MMM')
18 | strong= moment.utc(article.date).format('DD')
19 | h3
20 | a(href=article.url)= article.title
21 | p= article.metadata.shortdesc
22 | div(class="4u")
23 | section
24 | header
25 | h2 What's this all about?
26 | a(href="#",class="image featured")
27 | img(src= locals.banner)
28 | p= locals.description
29 | div(class="row")
30 | div(class="12u")
31 | //Copyright
32 | div(id="copyright")
33 | ul(class="links")
34 | li!= "© " + locals.name + " All rights reserved."
35 | li Design:
36 | a(href="http://html5up.net") HTML5 UP
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/moment/test/moment/normalizeUnits.js:
--------------------------------------------------------------------------------
1 | /*global require, exports */
2 |
3 | var moment = require("../../moment");
4 |
5 | exports.normalizeUnits = {
6 | "normalize units" : function (test) {
7 | var fullKeys = ["year", "month", "isoWeek", "week", "day", "hour", "minute", "second", "millisecond", "date", 'dayOfYear', 'weekday', 'isoWeekday', 'weekYear', 'isoWeekYear'],
8 | aliases = ["y", "M", "W", "w", "d", "h", "m", "s", "ms", "D", 'DDD', 'e', 'E', 'gg', 'GG'],
9 | length = fullKeys.length,
10 | fullKey,
11 | fullKeyCaps,
12 | fullKeyPlural,
13 | fullKeyCapsPlural,
14 | fullKeyLower,
15 | alias,
16 | index;
17 |
18 | for (index = 0; index < length; index += 1) {
19 | fullKey = fullKeys[index];
20 | fullKeyCaps = fullKey.toUpperCase();
21 | fullKeyLower = fullKey.toLowerCase();
22 | fullKeyPlural = fullKey + "s";
23 | fullKeyCapsPlural = fullKeyCaps + "s";
24 | alias = aliases[index];
25 | test.equal(moment.normalizeUnits(fullKey), fullKey, "Testing full key " + fullKey);
26 | test.equal(moment.normalizeUnits(fullKeyCaps), fullKey, "Testing full key capitalised " + fullKey);
27 | test.equal(moment.normalizeUnits(fullKeyPlural), fullKey, "Testing full key plural " + fullKey);
28 | test.equal(moment.normalizeUnits(fullKeyCapsPlural), fullKey, "Testing full key capitalised and plural " + fullKey);
29 | test.equal(moment.normalizeUnits(alias), fullKey, "Testing alias " + fullKey);
30 | }
31 |
32 | test.done();
33 | }
34 | };
35 |
--------------------------------------------------------------------------------
/metalsmithsite/metalsmith.json:
--------------------------------------------------------------------------------
1 | {
2 | "source": "./src",
3 | "metadata": {
4 | "site": {
5 | "title": "Adventure Time!",
6 | "url": "localhost:8080",
7 | "banner": "/assets/images/about.jpg"
8 | },
9 | "description": "Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen."
10 | },
11 | "plugins": {
12 | "metalsmith-page-titles": {},
13 | "metalsmith-collections": {},
14 | "metalsmith-date-formatter": {
15 | "dates": [
16 | {
17 | "key": "date",
18 | "format": "MMM DD, YYYY"
19 | }
20 | ]
21 | },
22 | "metalsmith-markdown": {},
23 | "metalsmith-more": {
24 | "key": "excerpt"
25 | },
26 | "metalsmith-feed": {
27 | "collection" : "featured"
28 | },
29 | "metalsmith-metadata": {
30 | "characters": "data/characters.yaml"
31 | },
32 | "metalsmith-permalinks": {
33 | "pattern": "posts/:date/:title"
34 | },
35 | "metalsmith-layouts": {
36 | "engine": "handlebars",
37 | "directory": "./layouts",
38 | "partials": "layouts/partials"
39 | },
40 | "metalsmith-assets": {
41 | "source": "./src/assets",
42 | "destination": "./assets"
43 | },
44 | "metalsmith-serve": {
45 | "port": 8080
46 | }
47 | }
48 | }
--------------------------------------------------------------------------------
/wintersmithsite/node_modules/moment/tasks/embed_languages.js:
--------------------------------------------------------------------------------
1 |
2 | module.exports = function (grunt) {
3 |
4 | grunt.registerTask('embed_languages', function () {
5 | var config = grunt.config('embed_languages');
6 |
7 | var files = grunt.file.expand(config.targetLangs);
8 | var embeddedContents = determineEmbeddedContent(files);
9 |
10 | var momentContents = grunt.file.read(config.moment);
11 | var modifiedContents = momentContents.replace('/* EMBED_LANGUAGES */', function () {
12 | // If we don't do this, $ symbols in lang files may get interpreted in
13 | // the regex replacement
14 | return embeddedContents;
15 | });
16 |
17 | grunt.file.write(config.dest, modifiedContents);
18 | });
19 |
20 | var languageReset = 'moment.lang(\'en\');';
21 |
22 | function determineEmbeddedContent(files) {
23 | var embeddedContent = '';
24 | files.forEach(function (file) {
25 | embeddedContent += transformFile(file);
26 | });
27 | embeddedContent += '\n ' + languageReset + '\n';
28 | return embeddedContent;
29 | }
30 |
31 | var reTransform = /function \(factory\) \{[^]*\}(?=\(function \(moment\) \{)/gm;
32 | var replaceWith =
33 | 'function (factory) {\n' +
34 | ' factory(moment);\n' +
35 | '}';
36 |
37 | function transformFile(file) {
38 | var fileContents = grunt.file.read(file);
39 |
40 | if (!fileContents.match(reTransform)) {
41 | grunt.warn('Warning: all language files must use the common UMD wrapper pattern. Failed language file: ' + file);
42 | return '';
43 | }
44 |
45 | return fileContents.replace(reTransform, replaceWith);
46 | }
47 |
48 | };
49 |
50 |
--------------------------------------------------------------------------------
/middlemansite/source/partials/_footer.erb:
--------------------------------------------------------------------------------
1 |
2 |
45 |
--------------------------------------------------------------------------------
/docpadsite/docpad.coffee:
--------------------------------------------------------------------------------
1 | # DocPad Configuration File
2 | # http://docpad.org/docs/config
3 |
4 | # Define the DocPad Configuration
5 | docpadConfig = {
6 | # ...
7 | templateData:
8 | site:
9 | title: "Adventure Time!"
10 | description: "Adventure Time is an American animated television series created by Pendleton Ward for Cartoon Network. The series follows the adventures of Finn, a human boy, and his best friend and adoptive brother Jake, a dog with magical powers to change shape and grow and shrink at will. Finn and Jake live in the post-apocalyptic Land of Ooo. Along the way, they interact with the other main characters of the show: Princess Bubblegum, The Ice King, and Marceline the Vampire Queen."
11 | banner: "/images/about.jpg"
12 | getPreparedTitle: ->
13 | # if we have a document title, then we should use that and suffix the site's title onto it
14 | if @document.title
15 | "#{@document.title} | #{@site.title}"
16 | # if our document does not have its own title, then we should just use the site's title
17 | else
18 | @site.title
19 | getCuttedContent: (content) ->
20 | i = content.search('')
21 | if i >= 0
22 | content[0..i-1]
23 | else
24 | content
25 | collections:
26 | posts: ->
27 | @getCollection("html").findAllLive({relativeOutDirPath: 'posts'},[{date:-1}])
28 | data: ->
29 | @getCollection("files").findAllLive({relativeOutDirPath: 'data'})
30 | plugins:
31 | rss:
32 | default:
33 | collection: 'posts'
34 | }
35 |
36 | # Export the DocPad Configuration
37 | module.exports = docpadConfig
--------------------------------------------------------------------------------
/harpsite/public/_data.json:
--------------------------------------------------------------------------------
1 | {
2 | "rss": {
3 | "layout": false
4 | },
5 | "characters": [
6 | {
7 | "description": "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things.",
8 | "image": "/assets/images/finn.jpg",
9 | "name": "Finn the Human"
10 | },
11 | {
12 | "description": "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog.",
13 | "image": "/assets/images/jake.jpg",
14 | "name": "Jake the Dog"
15 | },
16 | {
17 | "description": "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo.",
18 | "image": "/assets/images/bubblegum.jpg",
19 | "name": "Princess Bubblegum"
20 | },
21 | {
22 | "description": "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose.",
23 | "image": "/assets/images/iceking.jpg",
24 | "name": "Ice King"
25 | },
26 | {
27 | "description": "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone.",
28 | "image": "/assets/images/lsp.jpg",
29 | "name": "Lumpy Space Princess"
30 | },
31 | {
32 | "description": "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic.",
33 | "image": "/assets/images/marceline.jpg",
34 | "name": "Marceline"
35 | }
36 | ]
37 | }
--------------------------------------------------------------------------------
/harpsite_ejs/public/_data.json:
--------------------------------------------------------------------------------
1 | {
2 | "rss": {
3 | "layout": false
4 | },
5 | "characters": [
6 | {
7 | "description": "Finn is a 15-year-old human. He is roughly five feet tall and is missing several teeth due to his habit of biting trees and rocks among other things.",
8 | "image": "/assets/images/finn.jpg",
9 | "name": "Finn the Human"
10 | },
11 | {
12 | "description": "Jake can morph into all sorts of fantastic shapes with his powers, but typically takes the form of an average sized yellow-orange bulldog.",
13 | "image": "/assets/images/jake.jpg",
14 | "name": "Jake the Dog"
15 | },
16 | {
17 | "description": "Princess Bubblegum loves (most of) her subjects and defends them tirelessly when trouble brews and is perhaps the most intelligent person in the Land of Ooo.",
18 | "image": "/assets/images/bubblegum.jpg",
19 | "name": "Princess Bubblegum"
20 | },
21 | {
22 | "description": "Ice King, formerly Simon Petrikov, is a blue-skinned, elderly man with unusually pointy fingers, pointy toes, sharp teeth, and a long, goblin-like nose.",
23 | "image": "/assets/images/iceking.jpg",
24 | "name": "Ice King"
25 | },
26 | {
27 | "description": "Lumpy Space Princess (LSP) acts like a bratty, apathetic, sassy, attention-seeking and willfully ignorant teenager, often texting on her phone.",
28 | "image": "/assets/images/lsp.jpg",
29 | "name": "Lumpy Space Princess"
30 | },
31 | {
32 | "description": "Marceline is over a thousand years old. Centuries of wandering the Land of Ooo have made her a fearless daredevil and a a lover of all things exotic.",
33 | "image": "/assets/images/marceline.jpg",
34 | "name": "Marceline"
35 | }
36 | ]
37 | }
--------------------------------------------------------------------------------
/jekyllsite/_includes/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
45 |
--------------------------------------------------------------------------------
/wintersmithsite/templates/partials/homepagemiddle.jade:
--------------------------------------------------------------------------------
1 | div(class="row")
2 | div(class="12u")
3 | // Characters
4 | section
5 | header(class="major")
6 | h2 Characters
7 | div(class="row")
8 | each character in contents.characters
9 | div(class="4u")
10 | section(class="box")
11 | span(class="image featured")
12 | img(src= character.metadata.image)
13 | header
14 | h3= character.metadata.name
15 | p= character.metadata.description
16 |
17 | div(class="row")
18 | div(class="12u")
19 | section
20 | header(class="major")
21 | h2 Recent Episodes
22 | div(class="row")
23 | - var i=0
24 | - var articles = env.helpers.getArticles(contents);
25 | each article in articles
26 | - i++
27 | if i<3
28 | div(class="6u")
29 | section(class="box")
30 | a(href= article.url, class="image featured")
31 | img(src= article.metadata.banner)
32 | header
33 | h3= article.title
34 | p= "Posted " + moment.utc(article.date).format('MMM DD, YYYY')
35 | | !{ typogr(article.intro).typogrify() }
36 | footer
37 | ul(class="actions")
38 | li
39 | a(href= article.url, class="button icon fa-file-text") Continue Reading
--------------------------------------------------------------------------------
/docpadsite/src/partials/footer.html.eco:
--------------------------------------------------------------------------------
1 |
2 |
45 |
--------------------------------------------------------------------------------
/metalsmithsite/layouts/partials/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
46 |
--------------------------------------------------------------------------------
/hexosite/themes/advtime/layout/_partial/footer.ejs:
--------------------------------------------------------------------------------
1 |
2 |
48 |
--------------------------------------------------------------------------------
/harpsite/public/posts/_data.json:
--------------------------------------------------------------------------------
1 | {
2 | "season-6-food-chain": {
3 | "title": "Food Chain (Season 6)",
4 | "date": "2014-06-12",
5 | "banner": "/assets/images/foodchain.jpg",
6 | "shortdesc": "Finn and Jake learn about the food chain by becoming the food chain."
7 | },
8 | "season-6-breezy": {
9 | "title": "Breezy (Season 6)",
10 | "date": "2014-06-05",
11 | "banner": "/assets/images/breezy.jpg",
12 | "shortdesc": "Finn decides to get back into the dating game to help his wilting arm flower."
13 | },
14 | "season-6-sad-face": {
15 | "title": "Sad Face (Season 6)",
16 | "date": "2014-05-12",
17 | "banner": "/assets/images/sadface.jpg",
18 | "shortdesc": "While Jake is asleep, his tail goes to work as a clown in a traveling bug circus."
19 | },
20 | "season-6-the-tower": {
21 | "title": "The Tower (Season 6)",
22 | "date": "2014-05-05",
23 | "banner": "/assets/images/thetower.jpg",
24 | "shortdesc": "Finn is not happy with his replacement arm."
25 | },
26 | "season-6-james-ii": {
27 | "title": "James II (Season 6)",
28 | "date": "2014-04-28",
29 | "banner": "/assets/images/jamesii.jpg",
30 | "shortdesc": "Finn and Jake discover that Clone James has been faking his own death."
31 | },
32 | "season-6-wake-up": {
33 | "title": "Wake Up (Season 6)",
34 | "date": "2014-04-21",
35 | "banner": "/assets/images/wakeup.jpg",
36 | "shortdesc": "Prismo helps Finn and Jake access the Crystal Citadel to meet Finn's father."
37 | },
38 | "season-6-escape-the-citadel": {
39 | "title": "Escape from the Citadel (Season 6)",
40 | "date": "2014-04-21 10:33:56",
41 | "banner": "/assets/images/citadel.jpg",
42 | "shortdesc": "Finn and Jake follow the Lich to the Citadel, where Finn meets his long lost dad."
43 | }
44 | }
--------------------------------------------------------------------------------
/harpsite_ejs/public/posts/_data.json:
--------------------------------------------------------------------------------
1 | {
2 | "season-6-food-chain": {
3 | "title": "Food Chain (Season 6)",
4 | "date": "2014-06-12",
5 | "banner": "/assets/images/foodchain.jpg",
6 | "shortdesc": "Finn and Jake learn about the food chain by becoming the food chain."
7 | },
8 | "season-6-breezy": {
9 | "title": "Breezy (Season 6)",
10 | "date": "2014-06-05",
11 | "banner": "/assets/images/breezy.jpg",
12 | "shortdesc": "Finn decides to get back into the dating game to help his wilting arm flower."
13 | },
14 | "season-6-sad-face": {
15 | "title": "Sad Face (Season 6)",
16 | "date": "2014-05-12",
17 | "banner": "/assets/images/sadface.jpg",
18 | "shortdesc": "While Jake is asleep, his tail goes to work as a clown in a traveling bug circus."
19 | },
20 | "season-6-the-tower": {
21 | "title": "The Tower (Season 6)",
22 | "date": "2014-05-05",
23 | "banner": "/assets/images/thetower.jpg",
24 | "shortdesc": "Finn is not happy with his replacement arm."
25 | },
26 | "season-6-james-ii": {
27 | "title": "James II (Season 6)",
28 | "date": "2014-04-28",
29 | "banner": "/assets/images/jamesii.jpg",
30 | "shortdesc": "Finn and Jake discover that Clone James has been faking his own death."
31 | },
32 | "season-6-wake-up": {
33 | "title": "Wake Up (Season 6)",
34 | "date": "2014-04-21",
35 | "banner": "/assets/images/wakeup.jpg",
36 | "shortdesc": "Prismo helps Finn and Jake access the Crystal Citadel to meet Finn's father."
37 | },
38 | "season-6-escape-the-citadel": {
39 | "title": "Escape from the Citadel (Season 6)",
40 | "date": "2014-04-21 10:33:56",
41 | "banner": "/assets/images/citadel.jpg",
42 | "shortdesc": "Finn and Jake follow the Lich to the Citadel, where Finn meets his long lost dad."
43 | }
44 | }
--------------------------------------------------------------------------------
/hugosite/layouts/partials/footer.html:
--------------------------------------------------------------------------------
1 |
2 |
48 |
--------------------------------------------------------------------------------