diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..187b825 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +# Jekyll +.DS_Store* +_site diff --git a/.ruby-version b/.ruby-version new file mode 100644 index 0000000..2bf1c1c --- /dev/null +++ b/.ruby-version @@ -0,0 +1 @@ +2.3.1 diff --git a/CNAME b/CNAME new file mode 100644 index 0000000..f657a80 --- /dev/null +++ b/CNAME @@ -0,0 +1 @@ +milliscents.com.au \ No newline at end of file diff --git a/Gemfile b/Gemfile new file mode 100644 index 0000000..437a9bf --- /dev/null +++ b/Gemfile @@ -0,0 +1,4 @@ +source "https://rubygems.org" +ruby '2.3.1' + +gem 'jekyll', '>=3.3' diff --git a/Gemfile.lock b/Gemfile.lock new file mode 100644 index 0000000..ca1ca98 --- /dev/null +++ b/Gemfile.lock @@ -0,0 +1,50 @@ +GEM + remote: https://rubygems.org/ + specs: + addressable (2.5.0) + public_suffix (~> 2.0, >= 2.0.2) + colorator (1.1.0) + ffi (1.9.14) + forwardable-extended (2.6.0) + jekyll (3.3.1) + addressable (~> 2.4) + colorator (~> 1.0) + jekyll-sass-converter (~> 1.0) + jekyll-watch (~> 1.1) + kramdown (~> 1.3) + liquid (~> 3.0) + mercenary (~> 0.3.3) + pathutil (~> 0.9) + rouge (~> 1.7) + safe_yaml (~> 1.0) + jekyll-sass-converter (1.5.0) + sass (~> 3.4) + jekyll-watch (1.5.0) + listen (~> 3.0, < 3.1) + kramdown (1.13.1) + liquid (3.0.6) + listen (3.0.8) + rb-fsevent (~> 0.9, >= 0.9.4) + rb-inotify (~> 0.9, >= 0.9.7) + mercenary (0.3.6) + pathutil (0.14.0) + forwardable-extended (~> 2.6) + public_suffix (2.0.4) + rb-fsevent (0.9.8) + rb-inotify (0.9.7) + ffi (>= 0.5.0) + rouge (1.11.1) + safe_yaml (1.0.4) + sass (3.4.22) + +PLATFORMS + ruby + +DEPENDENCIES + jekyll (>= 3.3) + +RUBY VERSION + ruby 2.3.1p112 + +BUNDLED WITH + 1.14.2 diff --git a/README.md b/README.md new file mode 100644 index 0000000..2f22e03 --- /dev/null +++ b/README.md @@ -0,0 +1,23 @@ +# milliscents.com.au + +Served from GitHub Pages + +https://milliscents.github.io/milliscents-com-au + +## Usage + +* Add html or markdown pages to `/pages`, eg. `/pages/example.md` +* Use a permalink in the yaml front matter for custom urls +* Run `bundle exec jekyll serve` +* Open http://localhost:4000/ +* Stop jekyll serve with `ctrl-c` +* Git commit and push +* GitHub pages will automatically publish the jekyll site +* Wait a few minutes for GitHub to finish + +# Initial Setup + +* `rbenv install 2.3.1` +* `gem install jekyll` +* `gem install bundler` +* `bundle install` diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..3ebe0be --- /dev/null +++ b/_config.yml @@ -0,0 +1,16 @@ +# Jekyll configuration + +name: milliscents-com-au +description: Amelia Causer's milliscents website +author: + name: Mike Causer + email: mcauser@gmail.com + +url: http://milliscents.github.io/milliscents-com-au + +exclude: [".ruby-version", "Gemfile", "Gemfile.lock", "README.md"] + +sass: + style: compressed + +encoding: utf-8 diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..f253581 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,24 @@ + + + + + + + + + Milliscents + + + + + {{ content }} + + + diff --git a/css/site.scss b/css/site.scss new file mode 100644 index 0000000..00c3064 --- /dev/null +++ b/css/site.scss @@ -0,0 +1,109 @@ +--- +--- + +// ^ dont remove these, otherwise jekyll wont convert this .scss -> .css + +* { + margin: 0; + padding: 0; +} +body { + font-family: 'Coming Soon', sans-serif; + font-size: 13px; + line-height: 14px; + color: #393939; + background: #fff; + margin: 0; + padding:0; +} +p { + margin: 20px 0; +} +img { + border: 0; +} +#splash { + text-align: center; + font-size: 20px; +} +#splash > img { + margin: 30px 0; +} +#images { + width: 700px; + margin: 30px auto; +} +#images a { + position: relative; + background: white; + display: inline-block; + border: 1px solid #eee; + padding: 3px; + border-radius: 3px; + box-shadow: 1px 3px 5px rgba(66,66,66,.7); + -webkit-transition: -webkit-transform .25s ease; + -moz-transition: -moz-transform .25s ease; + -o-transition: -o-transform .25s ease; + transition: transform .25s ease; + /* no jagged edges in chrome */ + -webkit-backface-visibility: hidden; + margin: 6px 10px; +} +#images a:nth-child(1), +#images a:nth-child(5), +#images a:nth-child(11) { + -webkit-transform: rotate(-7deg); + -moz-transform: rotate(-7deg); + -ms-transform: rotate(-7deg); + -o-transform: rotate(-7deg); + transform: rotate(-7deg); +} + +#images a:nth-child(2), +#images a:nth-child(4), +#images a:nth-child(9) { + -webkit-transform: rotate(4deg); + -moz-transform: rotate(4deg); + -ms-transform: rotate(4deg); + -o-transform: rotate(4deg); + transform: rotate(4deg); +} + +#images a:nth-child(3), +#images a:nth-child(7), +#images a:nth-child(12) { + -webkit-transform: rotate(7deg); + -moz-transform: rotate(7deg); + -ms-transform: rotate(7deg); + -o-transform: rotate(7deg); + transform: rotate(7deg); +} + +#images a:nth-child(8), +#images a:nth-child(6), +#images a:nth-child(10) { + -webkit-transform: rotate(-4deg); + -moz-transform: rotate(-4deg); + -ms-transform: rotate(-4deg); + -o-transform: rotate(-4deg); + transform: rotate(-4deg); +} + +#images a:hover { + box-shadow: 2px 6px 8px rgba(33,33,33,.5); + -webkit-transform: scale(1.25); + -moz-transform: scale(1.25); + -o-transform: scale(1.25); + transform: scale(1.25); + z-index: 5; +} +p.footer { + width: 700px; + margin: auto; + line-height: 30px; +} +p.links a + a:before { + display: inline-block; + content: "|"; + padding: 0 10px; +} diff --git a/favicon.ico b/favicon.ico new file mode 100755 index 0000000..9eebfa0 Binary files /dev/null and b/favicon.ico differ diff --git a/images/large/01.jpg b/images/large/01.jpg new file mode 100644 index 0000000..1640ab4 Binary files /dev/null and b/images/large/01.jpg differ diff --git a/images/large/02.jpg b/images/large/02.jpg new file mode 100644 index 0000000..eb8b54f Binary files /dev/null and b/images/large/02.jpg differ diff --git a/images/large/03.jpg b/images/large/03.jpg new file mode 100644 index 0000000..c32f771 Binary files /dev/null and b/images/large/03.jpg differ diff --git a/images/large/04.jpg b/images/large/04.jpg new file mode 100644 index 0000000..50a26f9 Binary files /dev/null and b/images/large/04.jpg differ diff --git a/images/large/05.jpg b/images/large/05.jpg new file mode 100644 index 0000000..a2796ce Binary files /dev/null and b/images/large/05.jpg differ diff --git a/images/large/06.jpg b/images/large/06.jpg new file mode 100644 index 0000000..4e9b83a Binary files /dev/null and b/images/large/06.jpg differ diff --git a/images/large/07.jpg b/images/large/07.jpg new file mode 100644 index 0000000..bdedc8d Binary files /dev/null and b/images/large/07.jpg differ diff --git a/images/large/08.jpg b/images/large/08.jpg new file mode 100644 index 0000000..3626a3c Binary files /dev/null and b/images/large/08.jpg differ diff --git a/images/large/09.jpg b/images/large/09.jpg new file mode 100644 index 0000000..2c04594 Binary files /dev/null and b/images/large/09.jpg differ diff --git a/images/large/10.jpg b/images/large/10.jpg new file mode 100644 index 0000000..92135ad Binary files /dev/null and b/images/large/10.jpg differ diff --git a/images/large/11.jpg b/images/large/11.jpg new file mode 100644 index 0000000..c11899d Binary files /dev/null and b/images/large/11.jpg differ diff --git a/images/large/12.jpg b/images/large/12.jpg new file mode 100644 index 0000000..b202a79 Binary files /dev/null and b/images/large/12.jpg differ diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 0000000..11ec4f4 Binary files /dev/null and b/images/logo.png differ diff --git a/images/thumb/01.jpg b/images/thumb/01.jpg new file mode 100644 index 0000000..2cb3ae7 Binary files /dev/null and b/images/thumb/01.jpg differ diff --git a/images/thumb/02.jpg b/images/thumb/02.jpg new file mode 100644 index 0000000..5497687 Binary files /dev/null and b/images/thumb/02.jpg differ diff --git a/images/thumb/03.jpg b/images/thumb/03.jpg new file mode 100644 index 0000000..9c4d87c Binary files /dev/null and b/images/thumb/03.jpg differ diff --git a/images/thumb/04.jpg b/images/thumb/04.jpg new file mode 100644 index 0000000..62b247d Binary files /dev/null and b/images/thumb/04.jpg differ diff --git a/images/thumb/05.jpg b/images/thumb/05.jpg new file mode 100644 index 0000000..4f65ca5 Binary files /dev/null and b/images/thumb/05.jpg differ diff --git a/images/thumb/06.jpg b/images/thumb/06.jpg new file mode 100644 index 0000000..2d7bce2 Binary files /dev/null and b/images/thumb/06.jpg differ diff --git a/images/thumb/07.jpg b/images/thumb/07.jpg new file mode 100644 index 0000000..651c0f0 Binary files /dev/null and b/images/thumb/07.jpg differ diff --git a/images/thumb/08.jpg b/images/thumb/08.jpg new file mode 100644 index 0000000..fa6dd75 Binary files /dev/null and b/images/thumb/08.jpg differ diff --git a/images/thumb/09.jpg b/images/thumb/09.jpg new file mode 100644 index 0000000..306fce4 Binary files /dev/null and b/images/thumb/09.jpg differ diff --git a/images/thumb/10.jpg b/images/thumb/10.jpg new file mode 100644 index 0000000..c188501 Binary files /dev/null and b/images/thumb/10.jpg differ diff --git a/images/thumb/11.jpg b/images/thumb/11.jpg new file mode 100644 index 0000000..480acea Binary files /dev/null and b/images/thumb/11.jpg differ diff --git a/images/thumb/12.jpg b/images/thumb/12.jpg new file mode 100644 index 0000000..8b165c9 Binary files /dev/null and b/images/thumb/12.jpg differ diff --git a/pages/404.md b/pages/404.md new file mode 100644 index 0000000..9a18bfa --- /dev/null +++ b/pages/404.md @@ -0,0 +1,10 @@ +--- +layout: default +title: 404 Not Found +permalink: /404.html +--- + +
+ +

404 Page not found

+
diff --git a/pages/index.md b/pages/index.md new file mode 100644 index 0000000..ffe00cb --- /dev/null +++ b/pages/index.md @@ -0,0 +1,31 @@ +--- +layout: default +title: Home +permalink: / +--- + +
+ + +
+ + + + + + + + + + + + +
+ + +
diff --git a/robots.txt b/robots.txt new file mode 100644 index 0000000..eb05362 --- /dev/null +++ b/robots.txt @@ -0,0 +1,2 @@ +User-agent: * +Disallow: