Skip to content
This repository has been archived by the owner on Mar 1, 2019. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mcauser committed Feb 2, 2017
0 parents commit b89e898
Show file tree
Hide file tree
Showing 38 changed files with 274 additions and 0 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Jekyll
.DS_Store*
_site
1 change: 1 addition & 0 deletions .ruby-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
2.3.1
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
milliscents.com.au
4 changes: 4 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
source "https://rubygems.org"
ruby '2.3.1'

gem 'jekyll', '>=3.3'
50 changes: 50 additions & 0 deletions Gemfile.lock
Original file line number Diff line number Diff line change
@@ -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
23 changes: 23 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -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`
16 changes: 16 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Jekyll configuration

name: milliscents-com-au
description: Amelia Causer's milliscents website
author:
name: Mike Causer
email: [email protected]

url: http://milliscents.github.io/milliscents-com-au

exclude: [".ruby-version", "Gemfile", "Gemfile.lock", "README.md"]

sass:
style: compressed

encoding: utf-8
24 changes: 24 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<!DOCTYPE html>
<html lang="en-au">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<meta content="IE=edge,chrome=1" http-equiv="X-UA-Compatible">
<meta name="keywords" content="Milliscents, candles, soy wax candles, soy wax melts">
<meta name="description" content="Hand poured soy wax candles, melts, and fragranced products to beautify, scent and illuminate your home">
<title>Milliscents</title>
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Coming+Soon:regular|Open+Sans+Condensed:300&amp;subset=latin">
<link rel="stylesheet" href="css/site.css">
</head>
<body>
{{ content }}
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-34408854-1', 'milliscents.com.au');
ga('send', 'pageview');
</script>
</body>
</html>
109 changes: 109 additions & 0 deletions css/site.scss
Original file line number Diff line number Diff line change
@@ -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;
}
Binary file added favicon.ico
Binary file not shown.
Binary file added images/large/01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/03.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/04.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/05.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/06.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/07.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/08.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/09.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/11.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/large/12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/01.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/02.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/03.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/04.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/05.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/06.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/07.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/08.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/09.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/10.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/11.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added images/thumb/12.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 10 additions & 0 deletions pages/404.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
---
layout: default
title: 404 Not Found
permalink: /404.html
---

<div id="splash">
<img src="/images/logo.png">
<h2>404 Page not found</h2>
</div>
31 changes: 31 additions & 0 deletions pages/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
---
layout: default
title: Home
permalink: /
---

<div id="splash">
<img src="/images/logo.png">
<p class="footer">Hand poured soy wax candles, melts, and fragranced products to beautify, scent and illuminate your home.</p>
<div id="images">
<a><img src="/images/thumb/01.jpg"></a>
<a><img src="/images/thumb/05.jpg"></a>
<a><img src="/images/thumb/03.jpg"></a>
<a><img src="/images/thumb/04.jpg"></a>
<a><img src="/images/thumb/02.jpg"></a>
<a><img src="/images/thumb/06.jpg"></a>
<a><img src="/images/thumb/07.jpg"></a>
<a><img src="/images/thumb/08.jpg"></a>
<a><img src="/images/thumb/09.jpg"></a>
<a><img src="/images/thumb/10.jpg"></a>
<a><img src="/images/thumb/11.jpg"></a>
<a><img src="/images/thumb/12.jpg"></a>
</div>
<p class="footer">Our new shop will be launched soon.</p>
<p class="links">
<a href="mailto:[email protected]">[email protected]</a>
<a href="https://www.facebook.com/milliscentsaustralia">Facebook Page</a>
<a href="http://www.etsy.com/shop/MilliScentsAustralia">Etsy Store</a>
<a href="https://www.madeit.com.au/Main/Store?storeid=15140">Made It Store</a>
</p>
</div>
2 changes: 2 additions & 0 deletions robots.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
User-agent: *
Disallow:

0 comments on commit b89e898

Please sign in to comment.