diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..0c3e5ab
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,2 @@
+_site/
+.sass-cache/
diff --git a/LICENCE b/LICENCE
new file mode 100644
index 0000000..ebafb33
--- /dev/null
+++ b/LICENCE
@@ -0,0 +1,21 @@
+The mediator Jekyll theme is licenced under MIT License (MIT)
+
+Copyright (c) 2014 Dirk Fabisch
+
+Permission is hereby granted, free of charge, to any person obtaining a copy
+of this software and associated documentation files (the "Software"), to deal
+in the Software without restriction, including without limitation the rights
+to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+copies of the Software, and to permit persons to whom the Software is
+furnished to do so, subject to the following conditions:
+
+The above copyright notice and this permission notice shall be included in
+all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
+THE SOFTWARE.
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..6ff223f
--- /dev/null
+++ b/README.md
@@ -0,0 +1,79 @@
+mediator
+========
+
+A medium inspired Jekyll blog theme. The basic idea came from the Ghost theme
+[Readium 2.0](http://www.svenread.com/readium-ghost-theme/). I use mediator on my own blog [The Base](blog.base68.com).
+
+Screenshots
+--------
+![screenshot](/assets/images/screenshot1.jpg)
+![screenshot](/assets/images/screenshot2.jpg)
+![screenshot](/assets/images/screenshot3.jpg)
+
+Features
+-------
+* Fully Responsive layout
+* Use header images in articles, if you want to (add tag "image" and url to the image in the front matter section of a post)
+* Minimal design
+* Featured article support
+* FontAwesome implemented for easy use of icons fonts
+* Free & Open Source Font usage
+
+Getting Started
+---
+- [Fork this repository](https://github.com/dirkfabisch/mediator)
+- Clone it: `git clone https://github.com/YOUR-USER/mediator`
+- Install the [GitHub Pages gem](https://github.com/github/pages-gem) (includes Jekyll): `bundle install`
+- Run the jekyll server: `jekyll serve`
+
+You should have a server up and running locally at .
+
+Configuration
+-----
+
+The main settings happen in side of the _config.yml file:
+
+### Site
+
+Main settings for the site
+
+* **title**: name of your site
+* **description**: description of your site
+* **logo**: small logo for the site (300x * 300x)
+* **cover**: large background image on the index page
+
+* **name**: name site owner
+* **email**: mail address of the site owner
+* **author**: author name
+* **author_image**: small image of author (300x * 300px)
+
+
+### Social
+
+The template allows to add all major social plattforms to your site.
+Fill the the form for each plattform. If you leave the share_* entries empty, the sharing buttons below a post are not shown.
+
+* **icon**: name of social plattform (must match a name of [font-awsome](http://fortawesome.github.io/Font-Awesome/) icon set )
+* **url**: url of your account
+* **desc**: slogan of the plattform
+* **share_url**: share url
+* **share_title**: first part of url for the title
+* **share_link**: second part of the share url for the link to the post
+
+The Liquid template engine will magical combine the different parts to a share url.
+
+```
+http://twitter.com/share?text=post_title&url=post_url
+````
+
+See [_config.yml](https://github.com/dirkfabisch/mediator/blob/master/_config.yml) for more examples.
+
+Licensing
+---------
+
+[MIT](https://github.com/dirkfabisch/madiator/blob/master/LICENSE) with no added caveats, so feel free to use this on your site without linking back to me or using a disclaimer or anything silly like that.
+
+Contact
+-------
+I'd love to hear from you at [@dirkfabisch](https://twitter.com/dirkfabisch). Feel free to open issues if you run into trouble or have suggestions. Pull Requests always welcome.
+
diff --git a/_config.yml b/_config.yml
new file mode 100644
index 0000000..4e08796
--- /dev/null
+++ b/_config.yml
@@ -0,0 +1,53 @@
+# Build settings
+markdown: redcarpet
+highlighter: pygments
+
+# Site settings
+title: "OpenJCE"
+description: > # this means to ignore newlines until "email:"
+ Free Your Academic Data
+
+email: sagidayan@gmail.com
+#blog logo
+logo: "/assets/images/logo.png"
+# blog cover
+cover: "/assets/images/background_image.jpg"
+
+name: 'OpenJCE'
+author: 'OpenJCE Teem'
+author_image: "/assets/images/author.jpg"
+
+paginate: 5
+
+url: "http://0.0.0.0:4000/" # the base hostname & protocol for your site
+baseurl: ""
+
+# social icons and sharing options
+social:
+ # - icon: twitter
+ # url: https://twitter.com/dirkfabisch
+ # desc: Follow me on twitter
+ # share_url: http://twitter.com/share
+ # share_title: ?text=
+ # share_link: "&url="
+
+# - icon: facebook
+# url: https://facebook.com/???
+# desc: Connect with me facebook
+# share_url: //www.facebook.com/sharer.php
+# share_title: ?t=
+# share_link: "&u="
+
+ - icon: github
+ url: https://github.com/liranbg/JceManager
+ desc: Fork me on github!
+ share_url:
+ share_title:
+ share_link:
+
+# - icon: google-plus
+# url: https://google.com/???
+# desc: Add me on google+
+# share_url:
+# share_title:
+# share_link:
diff --git a/_includes/footer.html b/_includes/footer.html
new file mode 100644
index 0000000..f23e4a1
--- /dev/null
+++ b/_includes/footer.html
@@ -0,0 +1,11 @@
+
+
+
+
+
diff --git a/_includes/head.html b/_includes/head.html
new file mode 100644
index 0000000..0ca7c98
--- /dev/null
+++ b/_includes/head.html
@@ -0,0 +1,30 @@
+
+
+
+
+
+
+
+ {% if page.title %}{{ page.title }}{% else %}{{ site.title }}{% endif %}
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_includes/header.html b/_includes/header.html
new file mode 100644
index 0000000..2ab934c
--- /dev/null
+++ b/_includes/header.html
@@ -0,0 +1,5 @@
+
+
+
+
+
diff --git a/_layouts/default.html b/_layouts/default.html
new file mode 100644
index 0000000..6f54b4e
--- /dev/null
+++ b/_layouts/default.html
@@ -0,0 +1,24 @@
+
+
+
+ {% include head.html %}
+
+
+
+ {% include header.html %}
+
+
+
+
+
+ {{ content }}
+
+
+
+
+
+ {% include footer.html %}
+
+
+
+
diff --git a/_layouts/page.html b/_layouts/page.html
new file mode 100644
index 0000000..fa56786
--- /dev/null
+++ b/_layouts/page.html
@@ -0,0 +1,98 @@
+---
+---
+
+
+ {% include head.html %}
+
+ {% include header.html %}
+
+
+ {% if page.image %}
+
").html(n).find(h).text())}):M(r.text())})}}(jQuery);
\ No newline at end of file
diff --git a/assets/js/readingTime.min.js b/assets/js/readingTime.min.js
new file mode 100755
index 0000000..47f83e8
--- /dev/null
+++ b/assets/js/readingTime.min.js
@@ -0,0 +1,12 @@
+/*!
+
+Name: Reading Time
+Dependencies: jQuery
+Author: Michael Lynch
+Author URL: http://michaelynch.com
+Date Created: August 14, 2013
+Date Updated: January 24, 2014
+Licensed under the MIT license
+
+*/
+(function(e){e.fn.readingTime=function(t){if(!this.length){return this}var n={readingTimeTarget:".eta",wordCountTarget:null,wordsPerMinute:270,round:true,lang:"en",lessThanAMinuteString:"",prependTimeString:"",prependWordString:"",remotePath:null,remoteTarget:null};var r=this;var i=e(this);r.settings=e.extend({},n,t);var s=r.settings.readingTimeTarget;var o=r.settings.wordCountTarget;var u=r.settings.wordsPerMinute;var a=r.settings.round;var f=r.settings.lang;var l=r.settings.lessThanAMinuteString;var c=r.settings.prependTimeString;var h=r.settings.prependWordString;var p=r.settings.remotePath;var d=r.settings.remoteTarget;if(f=="fr"){var v=l||"Moins d'une minute";var m="min"}else if(f=="de"){var v=l||"Weniger als eine Minute";var m="min"}else if(f=="es"){var v=l||"Menos de un minuto";var m="min"}else if(f=="nl"){var v=l||"Minder dan een minuut";var m="min"}else{var v=l||"Less than a minute";var m="min"}var g=function(e){var t=e.split(" ").length;var n=u/60;var r=t/n;var f=Math.round(r/60);var l=Math.round(r-f*60);if(a===true){if(f>0){i.find(s).text(c+f+" "+m)}else{i.find(s).text(c+v)}}else{var p=f+":"+l;i.find(s).text(c+p)}if(o!==""&&o!==undefined){i.find(o).text(h+t)}};i.each(function(){if(p!=null&&d!=null){e.get(p,function(t){g(e("
").html(t).find(d).text())})}else{g(i.text())}})}})(jQuery)
\ No newline at end of file
diff --git a/css/main.sass b/css/main.sass
new file mode 100755
index 0000000..7d0d6b5
--- /dev/null
+++ b/css/main.sass
@@ -0,0 +1,599 @@
+---
+---
+
+@import 'syntax-highlighting'
+
+@import 'bourbon/bourbon'
+
+.cf
+ @include clearfix
+
+$rs: 16px
+
+$font-serif: Linux Libertine
+$font-sans: Open Sans, MundoSans, "Helvetica Neue", Arial, Helvetica, sans-serif
+
+
+@mixin respond-to($breakpoint)
+ @media only screen and (max-width: $breakpoint + px)
+ @content
+
+// Only needed for syntax highlighting
+%vertical-rhythm
+ margin-bottom: $rs
+
+
+
+body
+ font-family: $font-sans
+ margin: 0
+ padding: 0
+ text-rendering: optimizeLegibility
+ -webkit-font-smoothing: antialiased
+ -moz-font-feature-settings: "liga=1, dlig=1"
+ -ms-font-feature-settings: "liga", "dlig"
+ -webkit-font-feature-settings: "liga", "dlig"
+ -o-font-feature-settings: "liga", "dlig"
+ font-feature-settings: "liga", "dlig"
+
+.logo-readium
+ position: fixed
+ left: 10px
+ top: 10px
+ width: $rs*6
+ height: $rs*6
+ overflow: hidden
+ z-index: 99
+ .logo
+ display: block
+ position: absolute
+ top: $rs/2
+ left: $rs/2
+ width: $rs*5
+ height: $rs*5
+ background-size: cover
+ background-repeat: no-repeat
+
+.teaserimage
+ height: 450px
+ position: relative
+ overflow: hidden
+ background-color: #000
+ .teaserimage-image
+ background-size: cover
+ background-position: center
+ position: absolute
+ top: 0
+ left: 0
+ right: 0
+ bottom: 0
+ z-index: 1
+ text-indent: -9999px
+
+.blog-header
+ width: 100%
+ max-width: 640px
+ margin: 0 auto
+ position: relative
+ padding: 0
+ @include box-sizing(border-box)
+ @include respond-to(800)
+ padding: 0 $rs
+ .blog-logo
+ width: $rs*7.5
+ height: $rs*7.5
+ position: absolute
+ top: -$rs*3.75
+ right: 50%
+ margin-right: -$rs*3.75
+ background-size: cover
+ border-radius: 50%
+ z-index: 99
+ text-indent: -9999px
+ border: 3px solid #fff
+ background-color: #fff
+ -webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.3)
+ -moz-box-shadow: 0 1px 1px rgba(0,0,0,0.3)
+ box-shadow: 0 1px 1px rgba(0,0,0,0.3)
+ .blog-title
+ margin: 0
+ padding: $rs*5.25 $rs $rs/2
+ font-size: 50px
+ text-align: center
+ font-weight: 700
+ letter-spacing: -2px
+ outline: 0
+ line-height: 50px
+ word-break: break-word
+ color: #333
+ .blog-description
+ margin: 0 0 20px
+ padding: 0 $rs*2
+ font-size: $rs/8*9
+ line-height: 1.5
+ color: #666
+ text-align: center
+ font-weight: 400
+ .custom-links
+ margin: 0 0 50px
+ text-align: center
+ color: #ccc
+ a
+ text-decoration: none
+ color: #999
+ &:hover
+ color: #333
+
+.content
+ width: 100%
+ max-width: 640px
+ margin: 0 auto
+ @include box-sizing(border-box)
+ @include respond-to(800)
+ padding: 0 $rs*2
+ article
+ padding: 40px 0
+ border-bottom: 1px solid #f2f2f0
+ &:last-child
+ border-bottom: 0px
+ .post-title
+ letter-spacing: -0.02em
+ font-weight: 700
+ font-style: normal
+ display: block
+ font-size: 28px
+ line-height: 1.1
+ margin: 0 0
+ a
+ text-decoration: none
+ color: #333332
+ &:hover
+ text-decoration: none
+ .post-excerpt
+ letter-spacing: -0.02em
+ font-weight: 300
+ font-style: normal
+ font-size: 20px
+ line-height: 1.3
+ color: #666665
+ .post-meta
+ font-size: 14px
+ color: #b3b3b1
+ line-height: 30px
+ a
+ color: #b3b3b1
+ text-decoration: none
+ &:hover
+ text-decoration: underline
+.container.featured
+ padding-bottom: 40px
+
+.post-template .content
+ max-width: 700px
+
+.index-headline
+ border-top: 1px solid #dededc
+ margin: 0
+ padding: 16px 0
+ span
+ color: #b3b3b1
+ font-size: $rs/8*5
+ text-transform: uppercase
+ letter-spacing: 1px
+
+.archive-template
+ .index-headline.featured
+ display: none
+
+.pagination
+ text-align: center
+ padding: $rs*3 0 0
+ font-size: $rs/4*3
+ a
+ color: #999
+ text-decoration: none
+ &:hover
+ color: #333
+
+.post-reading
+ position: absolute
+ top: 10px
+ right: 30px
+ line-height: 44px
+ display: inline-block
+ white-space: nowrap
+ color: rgba(0,0,0,0.25)
+ font-size: 14px
+ letter-spacing: -0.02em
+ font-weight: 400
+ font-style: normal
+ font-family: $font-sans
+ z-index: 999
+.tag-articleimage .post-reading
+ color: rgba(255,255,255,0.9)
+ text-shadow: 0px 1px 4px rgba(0,0,0,0.25), 0px 0px 1px rgba(0,0,0,0.5)
+
+.site-footer
+ margin: 0 auto
+ padding: $rs*3 0
+ width: 100%
+ max-width: 640px
+ font-size: $rs/4*3
+ text-align: center
+ color: #999
+ line-height: $rs*1.1
+ a
+ color: #666
+ text-decoration: none
+ &:hover
+ color: #333
+.post
+ .article-image
+ position: absolute
+ background-color: #000
+ top: 0
+ left: 0
+ right: 0
+ bottom: 0
+ overflow: hidden
+ .post-image-image
+ background-size: cover
+ position: absolute
+ top: 0
+ left: 0
+ right: 0
+ bottom: 0
+ text-indent: -9999px
+ padding-top: 33%
+ z-index: 1
+ .post-meta
+ position: absolute
+ bottom: $rs*5
+ left: 30%
+ right: 30%
+ z-index: 999
+ font-family: $font-sans
+ @include box-sizing(border-box)
+ @include respond-to(800)
+ left: $rs
+ right: $rs
+ .post-title
+ font-weight: 700
+ font-style: normal
+ letter-spacing: -0.04em
+ font-size: 50px
+ line-height: 1.1
+ color: #fff
+ margin-bottom: 16px
+ text-shadow: 0px 1px 16px rgba(0,0,0,0.5), 0px 0px 1px rgba(0,0,0,0.5)
+ .author-image
+ display: inline-block
+ width: 30px
+ height: 30px
+ line-height: 30px
+ margin-right: 8px
+ margin-bottom: -10px
+ float: left
+ background-size: cover
+ border-radius: 100%
+ text-indent: -9999px
+ .author-name
+ display: inline
+ .post-meta-text
+ color: rgba(255,255,255,0.75)
+ letter-spacing: -0.02em
+ font-weight: 400
+ font-style: normal
+ text-shadow: 0px 1px 4px rgba(0,0,0,0.25), 0px 0px 1px rgba(0,0,0,0.5)
+ font-size: 14px
+ overflow: hidden
+ font-family: $font-sans
+ white-space: nowrap
+ text-overflow: ellipsis
+ a
+ color: rgba(255,255,255,0.75)
+ &:hover
+ color: rgba(255,255,255,1)
+ .fa-angle-down
+ font-size: 32px
+ margin: 64px auto 0
+ color: rgba(255,255,255,0.75)
+ &:hover
+ color: #fff
+ .topofpage
+ text-decoration: underline
+ .noarticleimage
+ .post-meta
+ font-family: $font-sans
+ padding-top: 60px
+ .post-title
+ font-weight: 700
+ font-style: normal
+ letter-spacing: -0.04em
+ font-size: 50px
+ line-height: 1.1
+ color: #333332
+ margin-bottom: 16px
+ .author-image
+ display: inline-block
+ width: 30px
+ height: 30px
+ line-height: 30px
+ margin-right: 8px
+ margin-bottom: -10px
+ float: left
+ background-size: cover
+ border-radius: 100%
+ text-indent: -9999px
+ .author-name
+ display: inline
+ .post-meta-text
+ color: #b3b3b1
+ letter-spacing: -0.02em
+ font-weight: 400
+ font-style: normal
+ font-size: 14px
+ overflow: hidden
+ font-family: $font-sans
+ white-space: nowrap
+ text-overflow: ellipsis
+ .post-content
+ width: 100%
+ font-family: $font-serif
+ color: #333
+ h1, h2, h3
+ font-family: $font-sans
+ h3, h4, h5, h6
+ letter-spacing: -0.02em
+ font-weight: 700
+ font-style: normal
+ font-size: 24px
+ line-height: 1.3
+ margin: 0
+ font-family: $font-sans
+ margin-bottom: 4px
+ h2, h1
+ letter-spacing: -0.02em
+ font-weight: 700
+ font-style: normal
+ font-size: 32px
+ line-height: 1.2
+ padding-top: 31px
+ margin-bottom: 4px
+ p
+ font-weight: 400
+ font-style: normal
+ font-size: 22px
+ line-height: 30px
+ margin: 0
+ padding-bottom: 30px
+ color: #333
+ -webkit-hyphens: auto
+ -moz-hyphens: auto
+ hyphens: auto
+ a
+ color: #333
+ text-decoration: underline
+ img
+ max-width: 100%
+ margin: 0 auto
+ figure
+ margin: 0
+ padding: 0 0 30px
+ figcaption
+ font-weight: 400
+ font-style: italic
+ font-size: 16px
+ line-height: 1.3
+ color: #666665
+ outline: 0
+ z-index: 300
+ text-align: center
+ hr
+ border: 0
+ padding: 0
+ display: block
+ width: 15%
+ margin: 30px auto
+ border: 0px solid #ddd
+ border-top: 1px solid #ddd
+ blockquote
+ margin: 0 0 30px
+ border: none
+ p
+ letter-spacing: 0.01rem
+ font-weight: 400
+ font-style: italic
+ border-left: 3px solid #57ad68
+ padding-left: 20px
+ margin-left: -26px
+ padding-bottom: 3px
+ ul, ol
+ padding: 0 0 30px
+ margin: 0
+ li
+ padding: 0
+ font-weight: 400
+ font-style: normal
+ font-size: 23px
+ line-height: 30px
+ margin-left: 30px
+ margin-bottom: 12px
+ padding-top: 2px
+ p
+ padding: 0 0 golden-ratio(1rem, 1)
+ ol li
+ list-style-type: decimal
+ .bottom-teaser
+ padding: 50px 0
+ font-family: $font-sans
+ hr
+ border: 0
+ padding: 0
+ display: block
+ width: 15%
+ margin: 16px 0 16px 100px
+ border: 0px solid #ddd
+ border-top: 1px solid #ddd
+ .isLeft
+ float: left
+ width: 47%
+ @include box-sizing(border-box)
+ @include respond-to(800)
+ width: 100%
+ padding-bottom: $rs*2
+ .index-headline
+ padding-bottom: 32px
+ a
+ color: #000
+ text-decoration: none
+ &:hover
+ color: #333
+ text-decoration: underline
+ .author-image
+ display: block
+ width: 80px
+ height: 80px
+ float: left
+ background-size: cover
+ border-radius: 100%
+ text-indent: -9999px
+ h4
+ font-size: 18px
+ line-height: 1.1
+ font-weight: 700
+ padding: 0
+ margin: 0
+ padding-left: 100px
+ p
+ font-size: 14px
+ line-height: 1.3
+ font-weight: 400
+ padding: 0
+ margin: 0
+ padding-left: 100px
+ &.published
+ color: #999
+ .isRight
+ float: right
+ width: 47%
+ @include box-sizing(border-box)
+ @include respond-to(800)
+ width: 100%
+ .index-headline
+ padding-bottom: 32px
+ .site-footer
+ margin: 0
+ padding: 0
+ color: #333
+ text-align: left
+ font-size: 14px
+ line-height: 1.3
+ color: #999
+ a
+ color: #333
+ text-decoration: none
+ &:hover
+ text-decoration: underline
+ .poweredby
+ display: block
+ padding-bottom: 18px
+ font-weight: 700
+ color: #333
+.share
+ text-align: right
+ padding: 20px 0 0
+ a
+ text-decoration: none
+ color: #bbb
+ padding-left: 12px
+ .hidden
+ display: none
+ &:hover
+ color: #333
+
+.bottom-closer
+ width: 100%
+ position: relative
+ overflow: hidden
+ .background-closer-image
+ position: absolute
+ top: 0
+ left: 0
+ right: 0
+ bottom: 0
+ text-indent: -9999px
+ background-size: cover
+ background-repeat: no-repeat
+ background-position: center
+ .inner
+ width: 100%
+ position: relative
+ z-index: 99
+ max-width: 640px
+ padding: 120px 0 90px
+ text-align: center
+ margin: 0 auto
+ .blog-title
+ margin: 0
+ padding: 0 0 10px
+ font-size: 50px
+ text-align: center
+ font-weight: 700
+ letter-spacing: -2px
+ outline: 0
+ line-height: 50px
+ word-break: break-word
+ color: #fff
+ text-shadow: 0px 1px 16px rgba(0,0,0,0.5), 0px 0px 1px rgba(0,0,0,0.5)
+ .blog-description
+ margin: 0 0 50px
+ padding: 0 $rs*2
+ font-size: $rs/8*9
+ line-height: 1.5
+ color: #fff
+ text-align: center
+ font-weight: 400
+ text-shadow: 0px 1px 16px rgba(0,0,0,0.5), 0px 0px 1px rgba(0,0,0,0.5)
+ .custom-links
+ margin: 0 0 50px
+ .btn
+ display: inline-block
+ text-align: center
+ letter-spacing: -0.02em
+ font-size: 15px
+ font-weight: 400
+ font-style: normal
+ text-decoration: none
+ cursor: pointer
+ height: 44px
+ background: #57ad68
+ color: #fff
+ vertical-align: middle
+ box-sizing: border-box
+ border-radius: 999em
+ line-height: 44px
+ padding: 0 18px
+
+#disqus_thread
+ margin-top: 50px
+.post-tag-articleimage
+ display: none
+
+pre,
+code
+ font-size: 15px
+ border: 1px solid #e8e8e8
+ border-radius: 3px
+ background-color: #eef
+
+code
+ padding: 1px 5px
+
+pre
+ padding: 8px 12px
+ overflow-x: scroll
+ > code
+ border: 0
+ padding-right: 0
+ padding-left: 0
diff --git a/css/normalize.css b/css/normalize.css
new file mode 100755
index 0000000..562891a
--- /dev/null
+++ b/css/normalize.css
@@ -0,0 +1,406 @@
+/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
+
+/* ==========================================================================
+ HTML5 display definitions
+ ========================================================================== */
+
+/**
+ * Correct `block` display not defined in IE 8/9.
+ */
+
+article,
+aside,
+details,
+figcaption,
+figure,
+footer,
+header,
+hgroup,
+main,
+nav,
+section,
+summary {
+ display: block;
+}
+
+/**
+ * Correct `inline-block` display not defined in IE 8/9.
+ */
+
+audio,
+canvas,
+video {
+ display: inline-block;
+}
+
+/**
+ * Prevent modern browsers from displaying `audio` without controls.
+ * Remove excess height in iOS 5 devices.
+ */
+
+audio:not([controls]) {
+ display: none;
+ height: 0;
+}
+
+/**
+ * Address `[hidden]` styling not present in IE 8/9.
+ * Hide the `template` element in IE, Safari, and Firefox < 22.
+ */
+
+[hidden],
+template {
+ display: none;
+}
+
+/* ==========================================================================
+ Base
+ ========================================================================== */
+
+/**
+ * 1. Set default font family to sans-serif.
+ * 2. Prevent iOS text size adjust after orientation change, without disabling
+ * user zoom.
+ */
+
+html {
+ font-family: sans-serif; /* 1 */
+ -ms-text-size-adjust: 100%; /* 2 */
+ -webkit-text-size-adjust: 100%; /* 2 */
+}
+
+/**
+ * Remove default margin.
+ */
+
+body {
+ margin: 0;
+}
+
+/* ==========================================================================
+ Links
+ ========================================================================== */
+
+/**
+ * Remove the gray background color from active links in IE 10.
+ */
+
+a {
+ background: transparent;
+}
+
+/**
+ * Address `outline` inconsistency between Chrome and other browsers.
+ */
+
+a:focus {
+ outline: thin dotted;
+}
+
+/**
+ * Improve readability when focused and also mouse hovered in all browsers.
+ */
+
+a:active,
+a:hover {
+ outline: 0;
+}
+
+/* ==========================================================================
+ Typography
+ ========================================================================== */
+
+/**
+ * Address variable `h1` font-size and margin within `section` and `article`
+ * contexts in Firefox 4+, Safari 5, and Chrome.
+ */
+
+h1 {
+ font-size: 2em;
+ margin: 0.67em 0;
+}
+
+/**
+ * Address styling not present in IE 8/9, Safari 5, and Chrome.
+ */
+
+abbr[title] {
+ border-bottom: 1px dotted;
+}
+
+/**
+ * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
+ */
+
+b,
+strong {
+ font-weight: bold;
+}
+
+/**
+ * Address styling not present in Safari 5 and Chrome.
+ */
+
+dfn {
+ font-style: italic;
+}
+
+/**
+ * Address differences between Firefox and other browsers.
+ */
+
+hr {
+ -moz-box-sizing: content-box;
+ box-sizing: content-box;
+ height: 0;
+}
+
+/**
+ * Address styling not present in IE 8/9.
+ */
+
+mark {
+ background: #ff0;
+ color: #000;
+}
+
+/**
+ * Correct font family set oddly in Safari 5 and Chrome.
+ */
+
+code,
+kbd,
+pre,
+samp {
+ font-family: monospace, serif;
+ font-size: 1em;
+}
+
+/**
+ * Improve readability of pre-formatted text in all browsers.
+ */
+
+pre {
+ white-space: pre-wrap;
+}
+
+/**
+ * Set consistent quote types.
+ */
+
+q {
+ quotes: "\201C" "\201D" "\2018" "\2019";
+}
+
+/**
+ * Address inconsistent and variable font size in all browsers.
+ */
+
+small {
+ font-size: 80%;
+}
+
+/**
+ * Prevent `sub` and `sup` affecting `line-height` in all browsers.
+ */
+
+sub,
+sup {
+ font-size: 75%;
+ line-height: 0;
+ position: relative;
+ vertical-align: baseline;
+}
+
+sup {
+ top: -0.5em;
+}
+
+sub {
+ bottom: -0.25em;
+}
+
+/* ==========================================================================
+ Embedded content
+ ========================================================================== */
+
+/**
+ * Remove border when inside `a` element in IE 8/9.
+ */
+
+img {
+ border: 0;
+}
+
+/**
+ * Correct overflow displayed oddly in IE 9.
+ */
+
+svg:not(:root) {
+ overflow: hidden;
+}
+
+/* ==========================================================================
+ Figures
+ ========================================================================== */
+
+/**
+ * Address margin not present in IE 8/9 and Safari 5.
+ */
+
+figure {
+ margin: 0;
+}
+
+/* ==========================================================================
+ Forms
+ ========================================================================== */
+
+/**
+ * Define consistent border, margin, and padding.
+ */
+
+fieldset {
+ border: 1px solid #c0c0c0;
+ margin: 0 2px;
+ padding: 0.35em 0.625em 0.75em;
+}
+
+/**
+ * 1. Correct `color` not being inherited in IE 8/9.
+ * 2. Remove padding so people aren't caught out if they zero out fieldsets.
+ */
+
+legend {
+ border: 0; /* 1 */
+ padding: 0; /* 2 */
+}
+
+/**
+ * 1. Correct font family not being inherited in all browsers.
+ * 2. Correct font size not being inherited in all browsers.
+ * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
+ */
+
+button,
+input,
+select,
+textarea {
+ font-family: inherit; /* 1 */
+ font-size: 100%; /* 2 */
+ margin: 0; /* 3 */
+}
+
+/**
+ * Address Firefox 4+ setting `line-height` on `input` using `!important` in
+ * the UA stylesheet.
+ */
+
+button,
+input {
+ line-height: normal;
+}
+
+/**
+ * Address inconsistent `text-transform` inheritance for `button` and `select`.
+ * All other form control elements do not inherit `text-transform` values.
+ * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
+ * Correct `select` style inheritance in Firefox 4+ and Opera.
+ */
+
+button,
+select {
+ text-transform: none;
+}
+
+/**
+ * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
+ * and `video` controls.
+ * 2. Correct inability to style clickable `input` types in iOS.
+ * 3. Improve usability and consistency of cursor style between image-type
+ * `input` and others.
+ */
+
+button,
+html input[type="button"], /* 1 */
+input[type="reset"],
+input[type="submit"] {
+ -webkit-appearance: button; /* 2 */
+ cursor: pointer; /* 3 */
+}
+
+/**
+ * Re-set default cursor for disabled elements.
+ */
+
+button[disabled],
+html input[disabled] {
+ cursor: default;
+}
+
+/**
+ * 1. Address box sizing set to `content-box` in IE 8/9/10.
+ * 2. Remove excess padding in IE 8/9/10.
+ */
+
+input[type="checkbox"],
+input[type="radio"] {
+ box-sizing: border-box; /* 1 */
+ padding: 0; /* 2 */
+}
+
+/**
+ * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
+ * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
+ * (include `-moz` to future-proof).
+ */
+
+input[type="search"] {
+ -webkit-appearance: textfield; /* 1 */
+ -moz-box-sizing: content-box;
+ -webkit-box-sizing: content-box; /* 2 */
+ box-sizing: content-box;
+}
+
+/**
+ * Remove inner padding and search cancel button in Safari 5 and Chrome
+ * on OS X.
+ */
+
+input[type="search"]::-webkit-search-cancel-button,
+input[type="search"]::-webkit-search-decoration {
+ -webkit-appearance: none;
+}
+
+/**
+ * Remove inner padding and border in Firefox 4+.
+ */
+
+button::-moz-focus-inner,
+input::-moz-focus-inner {
+ border: 0;
+ padding: 0;
+}
+
+/**
+ * 1. Remove default vertical scrollbar in IE 8/9.
+ * 2. Improve readability and alignment in all browsers.
+ */
+
+textarea {
+ overflow: auto; /* 1 */
+ vertical-align: top; /* 2 */
+}
+
+/* ==========================================================================
+ Tables
+ ========================================================================== */
+
+/**
+ * Remove most spacing between table cells.
+ */
+
+table {
+ border-collapse: collapse;
+ border-spacing: 0;
+}
\ No newline at end of file
diff --git a/css/print.css b/css/print.css
new file mode 100755
index 0000000..24de0c7
--- /dev/null
+++ b/css/print.css
@@ -0,0 +1,23 @@
+.article-image{
+page-break-after:never
+}
+.post-content,
+.bottom-teaser.cf{
+ padding-top:0!important
+}
+.bottom-teaser.cf{
+ margin:0
+}
+.post-reading,
+.bottom-teaser.cf .isRight,
+.cf.post-meta-text,
+.post-meta center,
+.post-image-image,
+.bottom-closer,
+.share,
+.home-template .post-meta .post-tags-set,
+.pagination,
+.author-image,
+.subscribe icon-feed{
+ display:none;
+}
\ No newline at end of file
diff --git a/css/screen.css b/css/screen.css
new file mode 100755
index 0000000..eff1fa9
--- /dev/null
+++ b/css/screen.css
@@ -0,0 +1,952 @@
+/* ==========================================================================
+ Table of Contents
+ ========================================================================== */
+
+/*
+
+ 0. Includes
+ 1. Icons
+ 2. General
+ 3. Utilities
+ 4. General
+ 5. Single Post
+ 6. Third Party Elements
+ 7. Pagination
+ 8. Footer
+ 9. Media Queries (Tablet)
+ 10. Media Queries (Mobile)
+
+ */
+
+/* ==========================================================================
+ 0. Includes - Ground zero
+ ========================================================================== */
+
+@import url(normalize.css);
+
+
+/* ==========================================================================
+ 1. Icons - Sets up the icon font and respective classes
+ ========================================================================== */
+
+/* Import the font file with the icons in it */
+@font-face {
+ font-family: 'icons';
+ src:url('../fonts/icons.eot');
+ src:url('../fonts/icons.eot?#iefix') format('embedded-opentype'),
+ url('../fonts/icons.woff') format('woff'),
+ url('../fonts/icons.ttf') format('truetype'),
+ url('../fonts/icons.svg#icons') format('svg');
+ font-weight: normal;
+ font-style: normal;
+}
+
+/* Apply these base styles to all icons */
+.icon-ghost:before,
+.icon-feed:before,
+.icon-twitter:before,
+.icon-google-plus:before,
+.icon-facebook:before {
+ font-family: 'icons';
+ speak: none;
+ font-style: normal;
+ font-weight: normal;
+ font-variant: normal;
+ text-transform: none;
+ line-height: 1;
+ -webkit-font-smoothing: antialiased;
+ text-decoration: none;
+}
+
+/* Each icon is created by inserting the corret character into the
+ content of the :before pseudo element. Like a boss. */
+.icon-ghost:before {
+ content: "\e000";
+}
+.icon-feed:before {
+ content: "\e001";
+}
+.icon-twitter:before {
+ content: "\e002";
+ font-size: 1.1em;
+}
+.icon-google-plus:before {
+ content: "\e003";
+}
+.icon-facebook:before {
+ content: "\e004";
+}
+
+
+/* ==========================================================================
+ 2. General - Setting up some base styles
+ ========================================================================== */
+
+html {
+ height: 100%;
+ max-height: 100%;
+ font-size: 62.5%;
+}
+
+body {
+ height: 100%;
+ max-height: 100%;
+ font-family: 'Noto Serif', serif;
+ font-size: 2.0rem;
+ line-height: 1.6em;
+ color: #3A4145;
+}
+
+::-moz-selection {
+ color: #222;
+ background: #D6EDFF;
+ text-shadow: none;
+}
+
+::selection {
+ color: #222;
+ background: #D6EDFF;
+ text-shadow: none;
+}
+
+h1, h2, h3,
+h4, h5, h6 {
+ text-rendering: optimizeLegibility;
+ line-height: 1;
+ margin-top: 0;
+ font-family: 'Open Sans', sans-serif;
+}
+
+h1 {
+ font-size: 5rem;
+ line-height: 1.2em;
+ letter-spacing: -2px;
+ text-indent: -3px;
+}
+
+h2 {
+ font-size: 4rem;
+ line-height: 1.2em;
+ letter-spacing: -1px;
+ text-indent: -2px;
+}
+
+h3 {
+ font-size: 3.5rem;
+}
+
+h4 {
+ font-size: 3rem;
+}
+
+h5 {
+ font-size: 2.5rem;
+}
+
+h6 {
+ font-size: 2rem;
+}
+
+a {
+ color: #4a4a4a;
+ transition: color ease 0.3s;
+}
+
+a:hover {
+ color: #57A3E8;
+}
+
+h1 a, h2 a, h3 a,
+h4 a, h5 a, h6 a {
+ color: #50585D;
+}
+
+
+p, ul, ol, dl {
+ margin: 1.6em 0;
+}
+
+ol ol, ul ul,
+ul ol, ol ul {
+ margin: 0.4em 0;
+}
+
+dl dt {
+ float: left;
+ width: 180px;
+ overflow: hidden;
+ clear: left;
+ text-align: right;
+ text-overflow: ellipsis;
+ white-space: nowrap;
+ font-weight: bold;
+ margin-bottom: 1em
+}
+
+dl dd {
+ margin-left: 200px;
+ margin-bottom: 1em
+}
+
+hr {
+ display: block;
+ height: 1px;
+ border: 0;
+ border-top: 1px solid #efefef;
+ margin: 3.2em 0;
+ padding: 0;
+}
+
+blockquote {
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ margin: 1.6em 0 1.6em -2.2em;
+ padding: 0 0 0 1.6em;
+ border-left: #4a4a4a 0.4em solid;
+}
+
+blockquote p {
+ margin: 0.8em 0;
+ font-style: italic;
+}
+
+blockquote small {
+ display: inline-block;
+ margin: 0.8em 0 0.8em 1.5em;
+ font-size:0.9em;
+ color: #ccc;
+}
+
+blockquote small:before { content: '\2014 \00A0'; }
+
+blockquote cite {
+ font-weight:bold;
+}
+
+blockquote cite a { font-weight: normal; }
+
+mark {
+ background-color: #ffc336;
+}
+
+code, tt {
+ padding: 1px 3px;
+ font-family: Inconsolata, monospace, sans-serif;
+ font-size: 0.85em;
+ white-space: pre-wrap;
+ border: 1px solid #E3EDF3;
+ background: #F7FAFB;
+ border-radius: 2px;
+}
+
+pre {
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ margin: 1.6em 0;
+ border: 1px solid #E3EDF3;
+ width: 100%;
+ padding: 10px;
+ font-family: Inconsolata, monospace, sans-serif;
+ font-size: 0.9em;
+ white-space: pre;
+ overflow: auto;
+ background: #F7FAFB;
+ border-radius: 3px;
+}
+
+pre code, tt {
+ font-size: inherit;
+ white-space: -moz-pre-wrap;
+ white-space: pre-wrap;
+ background: transparent;
+ border: none;
+ padding: 0;
+}
+
+kbd {
+ display: inline-block;
+ margin-bottom: 0.4em;
+ padding: 1px 8px;
+ border: #ccc 1px solid;
+ color: #666;
+ text-shadow: #fff 0 1px 0;
+ font-size: 0.9em;
+ font-weight: bold;
+ background: #f4f4f4;
+ border-radius: 4px;
+ box-shadow:
+ 0 1px 0 rgba(0, 0, 0, 0.2),
+ 0 1px 0 0 #fff inset;
+}
+
+table {
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ margin: 1.6em 0;
+ width:100%;
+ max-width: 100%;
+ background-color: transparent;
+}
+
+table th,
+table td {
+ padding: 8px;
+ line-height: 20px;
+ text-align: left;
+ vertical-align: top;
+ border-top: 1px solid #efefef;
+}
+
+table th { color: #000; }
+
+table caption + thead tr:first-child th,
+table caption + thead tr:first-child td,
+table colgroup + thead tr:first-child th,
+table colgroup + thead tr:first-child td,
+table thead:first-child tr:first-child th,
+table thead:first-child tr:first-child td {
+ border-top: 0;
+}
+
+table tbody + tbody { border-top: 2px solid #efefef; }
+
+table table table { background-color: #fff; }
+
+table tbody > tr:nth-child(odd) > td,
+table tbody > tr:nth-child(odd) > th {
+ background-color: #f6f6f6;
+}
+
+table.plain tbody > tr:nth-child(odd) > td,
+table.plain tbody > tr:nth-child(odd) > th {
+ background: transparent;
+}
+
+iframe, .fluid-width-video-wrapper {
+ display: block;
+ margin: 1.6em 0;
+}
+
+/* When a video is inside the fitvids wrapper, drop the
+margin on the iframe, cause it breaks stuff. */
+.fluid-width-video-wrapper iframe {
+ margin: 0;
+}
+
+
+/* ==========================================================================
+ 3. Utilities - These things get used a lot
+ ========================================================================== */
+
+/* Hides shit */
+.hidden {
+ text-indent: -9999px;
+ visibility: hidden;
+ display: none;
+}
+
+/* Creates a responsive wrapper that makes our content scale nicely */
+.inner {
+ position: relative;
+ width: 80%;
+ max-width: 700px;
+ margin: 0 auto;
+}
+
+/* Centres vertically yo. (IE8+) */
+.vertical {
+ display: table-cell;
+ vertical-align: middle;
+}
+
+
+/* ==========================================================================
+ 4. General - The main styles for the the theme
+ ========================================================================== */
+
+/* Big cover image on the home page */
+.site-head {
+ position: relative;
+ display: table;
+ width: 100%;
+ height: 60%;
+ margin-bottom: 5rem;
+ text-align: center;
+ color: #fff;
+ background: #303538 no-repeat center center;
+ background-size: cover;
+}
+
+.blog-logo {
+ text-decoration: none;
+}
+
+/* Yo-logo. Yolo-go. Upload one in ghost/settings/ */
+.blog-logo img {
+ display: block;
+ max-height: 100px;
+ width: auto;
+ margin: 0 auto;
+ line-height: 0;
+}
+
+/* The details of your blog. Defined in ghost/settings/ */
+.blog-title {
+ margin: 10px 0 10px 0;
+ font-size: 5rem;
+ letter-spacing: -1px;
+ font-weight: bold;
+ font-family: 'Open Sans', sans-serif;
+ text-shadow: 0 1px 6px rgba(0,0,0,0.1);
+}
+
+.blog-description {
+ margin: 0;
+ font-size: 1.8rem;
+ line-height: 1.5em;
+ font-weight: 300;
+ font-family: 'Noto Serif', serif;
+ letter-spacing: 0;
+ text-shadow: 0 1px 3px rgba(0,0,0,0.15);
+}
+
+/* Every post, on every page, gets this style on its tag */
+.post {
+ position: relative;
+ width:80%;
+ max-width: 700px;
+ margin: 4rem auto;
+ padding-bottom: 4rem;
+ border-bottom: #EBF2F6 1px solid;
+ word-break: break-word;
+ hyphens: auto;
+}
+
+/* Add a little circle in the middle of the border-bottom on our .post
+ just for the lolz and stylepoints. */
+.post:after {
+ display: block;
+ content: "";
+ width: 7px;
+ height: 7px;
+ border: #E7EEF2 1px solid;
+ position: absolute;
+ bottom: -5px;
+ left: 50%;
+ margin-left: -5px;
+ background: #fff;
+ -webkit-border-radius: 100%;
+ -moz-border-radius: 100%;
+ border-radius: 100%;
+ box-shadow: #fff 0 0 0 5px;
+}
+
+.post-title {
+ margin:0;
+}
+
+.post-title a {
+ text-decoration: none;
+}
+
+.post-excerpt p {
+ margin: 1.6rem 0 0 0;
+ font-size: 0.9em;
+ line-height: 1.6em;
+}
+
+.post-meta {
+ display: inline-block;
+ margin: 0 0 5px 0;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 1.5rem;
+ color: #9EABB3;
+}
+
+.post-meta a {
+ color: #9EABB3;
+ text-decoration: none;
+}
+
+.post-meta a:hover {
+ text-decoration: underline;
+}
+
+.user-meta {
+ position: relative;
+ padding: 0.3rem 40px 0 100px;
+ min-height: 77px;
+}
+
+.user-image {
+ position: absolute;
+ top: 0;
+ left: 0;
+}
+
+.user-name {
+ display: block;
+ font-weight: bold;
+}
+
+.user-bio {
+ display: block;
+ max-width: 440px;
+ font-size: 1.4rem;
+ line-height: 1.5em;
+}
+
+.publish-meta {
+ position: absolute;
+ top: 0;
+ right: 0;
+ padding: 4.3rem 0 4rem 0;
+ text-align: right;
+}
+
+.publish-heading {
+ display: block;
+ font-weight: bold;
+}
+
+.publish-date {
+ display: block;
+ font-size: 1.4rem;
+ line-height: 1.5em;
+}
+
+/* ==========================================================================
+ 5. Single Post - When you click on an individual post
+ ========================================================================== */
+
+/* Tweak the .post wrapper style */
+.post-template .post {
+ margin-top: 0;
+ border-bottom: none;
+ padding-bottom: 0;
+}
+
+/* Kill that stylish little circle that was on the border, too */
+.post-template .post:after {
+ display: none;
+}
+
+/* Insert some mad padding up in the header for better spacing */
+.post-template .post-header {
+ padding: 60px 0;
+ text-align: center;
+}
+
+.post-template .blog-title {
+ display: inline-block;
+ padding: 2.5rem 0;
+}
+
+/* Keep large images within the bounds of the post-width */
+.post-content img {
+ display: block;
+ max-width: 100%;
+ margin: 0 auto;
+ height: auto;
+}
+
+/* The author credit area after the post */
+.post-footer {
+ position: relative;
+ margin: 4rem 0 0 0;
+ padding: 4rem 0 0 0;
+ border-top: #EBF2F6 1px solid;
+}
+
+.post-footer h4 {
+ font-size: 1.8rem;
+ margin: 0;
+}
+
+.post-footer p {
+ margin: 1rem 0;
+ font-size: 1.4rem;
+ line-height: 1.6em;
+}
+
+/* Create some space to the right for the share links */
+.post-footer .author {
+ margin-right: 180px;
+}
+
+/* Drop the share links in the space to the right.
+ Doing it like this means it's easier for the author bio
+ to be flexible at smaller screen sizes while the share
+ links remain at a fixed width the whole time */
+.post-footer .share {
+ position: absolute;
+ top: 4rem;
+ right: 0;
+ width: 140px;
+}
+
+.post-footer .share a {
+ font-size: 1.8rem;
+ display: inline-block;
+ margin: 1.4rem 1.6rem 1.6rem 0;
+ color: #BBC7CC;
+ text-decoration: none;
+}
+
+.post-footer .share a:hover {
+ color: #50585D;
+}
+
+
+/* ==========================================================================
+ 6. Third Party Elements - Embeds from other services
+ ========================================================================== */
+
+/* Github */
+
+.gist table {
+ margin: 0;
+ font-size: 1.4rem;
+}
+
+.gist .line-number {
+ min-width: 25px;
+ font-size: 1.1rem;
+}
+
+
+/* ==========================================================================
+ 7. Pagination - Tools to let you flick between pages
+ ========================================================================== */
+
+/* The main wrapper for our pagination links */
+.pagination {
+ position: relative;
+ width: 80%;
+ max-width: 700px;
+ margin: 4rem auto;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 1.3rem;
+ color: #9EABB3;
+ text-align: center;
+}
+
+.pagination a {
+ color: #9EABB3;
+}
+
+/* Push the previous/next links out to the left/right */
+.older-posts,
+.newer-posts {
+ position: absolute;
+ display: inline-block;
+ padding: 0 15px;
+ border: #EBF2F6 2px solid;
+ text-decoration: none;
+ border-radius: 30px;
+ transition: border ease 0.3s;
+}
+
+.older-posts {
+ right: 0;
+}
+
+.page-number {
+ display: inline-block;
+ padding: 2px 0;
+}
+
+.newer-posts {
+ left: 0;
+}
+
+.older-posts:hover,
+.newer-posts:hover {
+ border-color: #9EABB3;
+}
+
+
+/* ==========================================================================
+ 8. Footer - The bottom of every page
+ ========================================================================== */
+
+.site-footer {
+ position: relative;
+ margin: 8rem 0 0 0;
+ padding: 4rem 0;
+ border-top: #EBF2F6 1px solid;
+ font-family: 'Open Sans', sans-serif;
+ font-size: 1.3rem;
+ line-height: 1.7em;
+ color: #BBC7CC;
+ text-align: center;
+ background: #F7FAFB;
+}
+
+.site-footer a {
+ color: #BBC7CC;
+ text-decoration: underline;
+}
+
+.site-footer a:hover {
+ color: #50585D;
+}
+
+.poweredby .icon-ghost {
+ font-weight: 700;
+ text-decoration: none;
+}
+
+.poweredby .icon-ghost:hover {
+ text-decoration: none;
+}
+
+.poweredby .icon-ghost:before {
+ font-size: 1rem;
+ margin-right: 0.2em;
+}
+
+/* The subscribe icon on the footer */
+.subscribe {
+ width: 28px;
+ height: 28px;
+ position: absolute;
+ top: -14px;
+ left: 50%;
+ margin-left: -15px;
+ border: #EBF2F6 1px solid;
+ text-align: center;
+ line-height: 2.4rem;
+ border-radius: 50px;
+ background: #fff;
+ transition: box-shadow 0.5s;
+}
+
+/* The RSS icon, inserted via icon font */
+.subscribe:before {
+ color: #D2DEE3;
+ font-size: 10px;
+ position: absolute;
+ top: 9px;
+ left: 9px;
+ font-weight: bold;
+ transition: color 0.5s ease;
+}
+
+/* Add a box shadow to on hover */
+.subscribe:hover {
+ box-shadow: rgba(0,0,0,0.05) 0 0 0 3px;
+ transition: box-shadow 0.25s;
+}
+
+.subscribe:hover:before {
+ color: #50585D;
+}
+
+/* CSS tooltip saying "Subscribe!" - initially hidden */
+.tooltip {
+ opacity:0;
+ display: inline-block;
+ padding: 4px 8px 5px 8px;
+ position:absolute;
+ top: -23px;
+ left: -21px;
+ color: rgba(255,255,255,0.9);
+ font-size: 1.1rem;
+ line-height: 1em;
+ text-align: center;
+ background: #50585D;
+ border-radius:20px;
+ box-shadow: 0 1px 4px rgba(0,0,0,0.1);
+ transition: opacity 0.3s ease, top 0.3s ease;
+}
+
+/* The little chiclet arrow under the tooltip, pointing down */
+.tooltip:after {
+ content:"";
+ border-width:5px 5px 0 5px;
+ border-style:solid;
+ border-color: #50585D transparent;
+ display:block;
+ position:absolute;
+ bottom:-4px;
+ left:50%;
+ margin-left:-5px;
+ z-index: 220;
+ width:0;
+}
+
+/* On hover, show the tooltip! */
+.subscribe:hover .tooltip {
+ opacity: 1;
+ top: -33px;
+}
+
+
+/* ==========================================================================
+ 9. Media Queries - Smaller than 900px
+ ========================================================================== */
+
+@media only screen and (max-width: 900px) {
+
+ blockquote {
+ margin-left: 0;
+ }
+
+ .site-head {
+ -webkit-box-sizing: border-box;
+ -moz-box-sizing: border-box;
+ box-sizing: border-box;
+ height: auto;
+ min-height: 240px;
+ padding: 15% 0;
+ }
+
+ .blog-title {
+ font-size: 4rem;
+ letter-spacing: -1px;
+ }
+
+ .blog-description {
+ font-size: 1.7rem;
+ line-height: 1.5em;
+ }
+
+ .post {
+ font-size: 0.9em;
+ line-height: 1.6em;
+ }
+
+ .post-template .post {
+ padding-bottom: 1rem;
+ }
+
+ .post-template .post-header {
+ padding: 40px 0;
+ }
+
+ h1 {
+ font-size: 4.8rem;
+ text-indent: -2px;
+ }
+
+ h2 {
+ font-size: 3.8rem;
+ }
+
+ h3 {
+ font-size: 3.3rem;
+ }
+
+ h4 {
+ font-size: 2.8rem;
+ }
+
+}
+
+/* ==========================================================================
+ 10. Media Queries - Smaller than 500px
+ ========================================================================== */
+
+
+@media only screen and (max-width: 500px) {
+
+ .blog-logo img {
+ max-height: 80px;
+ }
+
+ .inner,
+ .pagination {
+ width: auto;
+ margin-left: 16px;
+ margin-right: 16px;
+ }
+
+ .post {
+ width:auto;
+ margin-left: 16px;
+ margin-right: 16px;
+ font-size: 0.8em;
+ line-height: 1.6em;
+ }
+
+ .site-head {
+ padding: 10% 0;
+ }
+
+ .blog-title {
+ font-size: 3rem;
+ }
+
+ .blog-description {
+ font-size: 1.5rem;
+ }
+
+
+ h1, h2 {
+ font-size: 3rem;
+ line-height: 1.1em;
+ letter-spacing: -1px;
+ }
+
+ h3 {
+ font-size: 2.8rem;
+ }
+
+ h4 {
+ font-size: 2.3rem;
+ }
+
+ .post-template .post {
+ padding-bottom: 0;
+ }
+
+ .post-template .post-header {
+ padding: 30px 0;
+ }
+
+ .post-meta {
+ font-size: 1.3rem;
+ }
+
+ .post-footer {
+ padding: 4rem 0;
+ text-align: center;
+ }
+
+ .post-footer .author {
+ margin: 0 0 2rem 0;
+ padding: 0 0 1.6rem 0;
+ border-bottom: #EBF2F6 1px dashed;
+ }
+
+ .post-footer .share {
+ position: static;
+ width: auto;
+ }
+
+ .post-footer .share a {
+ margin: 1.4rem 0.8rem 0 0.8rem;
+ }
+
+ .older-posts,
+ .newer-posts {
+ position: static;
+ margin: 10px 0;
+ }
+
+ .page-number {
+ display: block;
+ }
+
+ .site-footer {
+ margin-top: 6rem;
+ font-size: 1.1rem;
+ }
+
+}
+
+/* ==========================================================================
+ End of file. Media queries should be the last thing here. Do not add stuff
+ below this point, or it will probably fuck everything up.
+ ========================================================================== */
diff --git a/download.md b/download.md
new file mode 100644
index 0000000..37b26b3
--- /dev/null
+++ b/download.md
@@ -0,0 +1,29 @@
+---
+layout: page
+title: Download
+permalink: /download/
+---
+
+
+###***Please select your operating system... & CPU Architecture***
+
+
+####OpenJCE Version 1.0 Stable
+
+ - Windows XP/7/8
+ - [32bit][win32]
+ - [64bit][win64] (*Recommended*)
+ - OSX >= 10.0.1
+ - [32bit][mac32]
+ - [64bit][mac64] (*Recommended*)
+ - Linux
+ - [32bit][linux32]
+ - [64bit][linux64] (*Recommended*)
+
+
+[win32]: /assets/images/os-icons/windows.jpg
+[win64]: /assets/images/os-icons/windows.jpg
+[mac32]: /assets/images/os-icons/windows.jpg
+[mac64]: /assets/images/os-icons/windows.jpg
+[linux32]: /assets/images/os-icons/windows.jpg
+[linux64]: /assets/images/os-icons/windows.jpg
diff --git a/feed.xml b/feed.xml
new file mode 100644
index 0000000..022378b
--- /dev/null
+++ b/feed.xml
@@ -0,0 +1,30 @@
+---
+layout: null
+---
+
+
+
+ {{ site.title | xml_escape }}
+ {{ site.description | xml_escape }}
+ {{ site.url }}{{ site.baseurl }}/
+
+ {{ site.time | date_to_rfc822 }}
+ {{ site.time | date_to_rfc822 }}
+ Jekyll v{{ jekyll.version }}
+ {% for post in site.posts limit:10 %}
+
+ {{ post.title | xml_escape }}
+ {{ post.content | xml_escape }}
+ {{ post.date | date_to_rfc822 }}
+ {{ post.url | prepend: site.baseurl | prepend: site.url }}
+ {{ post.url | prepend: site.baseurl | prepend: site.url }}
+ {% for tag in post.tags %}
+ {{ tag | xml_escape }}
+ {% endfor %}
+ {% for cat in post.categories %}
+ {{ cat | xml_escape }}
+ {% endfor %}
+
+ {% endfor %}
+
+
diff --git a/help.md b/help.md
new file mode 100644
index 0000000..ce21a52
--- /dev/null
+++ b/help.md
@@ -0,0 +1,101 @@
+---
+layout: page
+title: Help
+permalink: /help/
+---
+
+#Need some help getting arround?
+###Here are some topics that you might find helpful
+
+
+
+- [How Do I Log in?][connect]
+ - Not Connecting
+ - Save Your Credentials
+- [How Do I See My GPA][GPA]
+ - Change Your Grades
+- [See Your Semester Calendar][cal]
+ - Export to Google calendar/iCal/Outlook
+- [Language Selection][loco]
+ - Selecting A Different Language
+- [I Want To Help & Code][fork]
+
+
+
+---
+## How Do I Log in?
+once you have opened *OpenJCE* You will see 2 fields.
+Enter your JCE Username & Password, click "*Login*"...
+The connection icon should turn from Red to Orange and final Green. If you see a Green circle at the status bar, you are indeed connected.
+
+### Not Connecting
+Please make sure you have a stable internet connection.
+Make sure you have entered the right username and password.
+
+### Save Your Credentials
+At the login tab there is a checkbox, make sure that you are connected and check it.
+the username and password will now appear automaticly every time you launch *OpenJCE*.
+>**Note:** The password is encrypted.
+
+---
+
+## How Do I See My GPA
+Want to just see your GPA Really fast without opening the browser, re-entering your credentials and then find the right menu, click on the right sub-menu.....
+Login with *OpenJCE*, click on the GPA tab, and hit the "Add" button. thats it.
+>Want to Select a spesific semester?
+
+>No problem just adjust the time frame you want to see at the top of the GPA tab. clear the table with the
+>"Clear" button and click "Add" again.
+
+### Change Your Grades
+Want to see if another exam is worth your time? how mutch dose it effect your GPA?
+After you have added your GPA table to *OpenJCE* you can change the grade of each course by clicking on the grade and input the grade you thing you can get next time. the GPA at the bottom will change accordingly.
+Now you can see easily if you really should take the next test or not...
+
+>**Note:**
+
+>The Grades you change are locally. No, this Software is not a hack to change your grades...
+
+---
+
+## See Your Semester Calendar
+After you login, head over to the "Calendar" Tab.
+Tere you can choose the semester you want to see, and click "Get Calendar".
+Easy right?
+
+### Export to Google calendar/iCal/Outlook
+Ever wanted an easy way to put your Semeser into your favorit calendar service?
+Now you can do it easily with *OpenJCE*!
+After you got your Semester that you want to export. Click on the "Export to CSV" button. You will then be prompted with a dialog window.
+select the date witch the semester starts and when it ends (This data is available each year by JCE). then click "OK" button. Save the CSV file at a memorable place in you Hard Drive. and wait for *OpenJCE* to do its magic.
+Now head over to your favorit Calendar service and create a new calendar (Optional).
+now select import and give the service the CSV file.
+Enjoy.
+
+---
+
+## Language Selection
+At Default *OpenJPA* will choose you language according to your OS.
+If you are running your OS in Hebrew, *OpenJPA* will be in Hebrew as well...
+> Same thing goes to English
+
+### Selecting A Different Language
+Click on the menu Language "Your Language of choice"
+>Next time you launce *OpenJCE* the language will change
+
+---
+
+## I Want To Help & Code
+*OpenJCE* is an open-source project. we always need help and ideas...
+just [Fork Us On Github][git], Or open a feature request!
+
+### Found Bugs? Having Issues?
+The easiest way to report a *bug* is on our [ GithubPage][git].
+Please make sure the bug is not already opened. Pleas add as mutch information about the bug, so we can easily reproduce the bug. that way we can fix it fast.
+
+[connect]: #connect
+[GPA]: #GPA
+[cal]: #cal
+[loco]: #loco
+[fork]: #fork
+[git]: https://github.com/liranbg/JceManager
\ No newline at end of file
diff --git a/index.html b/index.html
index 9daeafb..b869a53 100644
--- a/index.html
+++ b/index.html
@@ -1 +1,117 @@
-test
+---
+layout: default
+---
+
+