├── _layouts ├── page.html ├── section.html └── home.html ├── _sections ├── maps.md ├── hours.md ├── parking.md ├── events.md └── eat.md ├── assets └── css │ └── main.scss ├── package.json ├── .gitignore ├── about.md ├── _config.yml ├── Gemfile └── index.html /_layouts/page.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /_sections/maps.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: section 3 | title: Maps 4 | --- 5 | -------------------------------------------------------------------------------- /assets/css/main.scss: -------------------------------------------------------------------------------- 1 | --- 2 | --- 3 | 4 | @import "scss/bootstrap.scss"; -------------------------------------------------------------------------------- /_sections/hours.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: section 3 | title: Store Hours 4 | --- 5 | -------------------------------------------------------------------------------- /_sections/parking.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: section 3 | title: Parking Information 4 | --- 5 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "bootstrap": "4.0.0-alpha.6" 4 | } 5 | } 6 | -------------------------------------------------------------------------------- /_sections/events.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: section 3 | title: Events & Sales 4 | --- 5 | 6 | Awesome events 7 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | .sass-cache 3 | .jekyll-metadata 4 | node_modules 5 | yarn.lock 6 | .DS_Store 7 | Gemfile.lock -------------------------------------------------------------------------------- /_sections/eat.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: section 3 | title: Eat & Drink 4 | stores: 5 | - Rasputin 6 | - Fat Slice 7 | - Blondies 8 | --- 9 | 10 | Yummy stuff.. 11 | -------------------------------------------------------------------------------- /_layouts/section.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: home 3 | --- 4 | 5 |

{{ page.title }}

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 |
24 | Card image cap 27 |
28 |

{{ section.title }}

29 |

30 | Name:

 {{ section.url }} 
31 | 36 |

37 | {{ section.title }} 38 |
39 |
40 | 41 | {% endfor %} 42 | --------------------------------------------------------------------------------