6 |
7 | {{ content }}
8 |
9 |
12 |
--------------------------------------------------------------------------------
/about.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: page
3 | title: About
4 | ---
5 |
6 | This is the base Jekyll theme. You can find out more info about
7 | customizing your Jekyll theme, as well as basic Jekyll usage
8 | documentation at [jekyllrb.com](http://jekyllrb.com/)
9 |
10 |
--------------------------------------------------------------------------------
/_layouts/home.html:
--------------------------------------------------------------------------------
1 |
2 |
3 | {{ site.title }} -> {{ page.title }}
4 |
5 |
6 |
7 |
8 | {{ content }}
9 |
10 |
11 |
12 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | title: Pow
2 | email: your-email@domain.com
3 | description: > # this means to ignore newlines until "baseurl:"
4 | Pow is cool!
5 | baseurl: "" # the subpath of your site, e.g. /blog
6 | url: "" # the base hostname & protocol for your site, e.g. http://example.com
7 | twitter_username: jekyllrb
8 | github_username: jekyll
9 |
10 | # Build settings
11 | markdown: kramdown
12 | # theme: minima
13 | gems:
14 | exclude:
15 | - Gemfile
16 | - Gemfile.lock
17 | - node_modules
18 | - package.json
19 | - yarn.lock
20 |
21 | sass:
22 | sass_dir: node_modules/bootstrap
23 |
24 | collections:
25 | sections:
26 | description: Features of the district
27 | output: true
28 |
--------------------------------------------------------------------------------
/Gemfile:
--------------------------------------------------------------------------------
1 | source "https://rubygems.org"
2 | ruby RUBY_VERSION
3 |
4 | # Hello! This is where you manage which Jekyll version is used to run.
5 | # When you want to use a different version, change it below, save the
6 | # file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
7 | #
8 | # bundle exec jekyll serve
9 | #
10 | # This will help ensure the proper Jekyll version is running.
11 | # Happy Jekylling!
12 | gem "jekyll", "3.3.1"
13 |
14 | # This is the default theme for new Jekyll sites. You may change this to anything you like.
15 | gem "minima", "~> 2.0"
16 |
17 | # If you want to use GitHub Pages, remove the "gem "jekyll"" above and
18 | # uncomment the line below. To upgrade, run `bundle update github-pages`.
19 | # gem "github-pages", group: :jekyll_plugins
20 |
21 | # If you have any plugins, put them here!
22 | group :jekyll_plugins do
23 | # gem "jekyll-feed", "~> 0.6"
24 | end
25 |
--------------------------------------------------------------------------------
/index.html:
--------------------------------------------------------------------------------
1 | ---
2 | layout: home
3 | title: Home for Pow
4 | ---
5 |
6 |
{{ page.title }}
7 |
8 |
9 | Vivamus sagittis lacus vel augue laoreet rutrum faucibus dolor auctor. Duis mollis, est non commodo luctus.
10 |
11 |
12 |
One of the leading sites in pow design.
13 |
14 |
15 |
All good things to those who wait
16 |
17 |
18 |
19 |
Collection testing
20 |
21 | {% for section in site.sections %}
22 |
23 |