diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4aed748 --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +_site/ +.DS_Store +.rvmrc \ No newline at end of file diff --git a/_config.yml b/_config.yml new file mode 100644 index 0000000..e7f6d4c --- /dev/null +++ b/_config.yml @@ -0,0 +1,2 @@ +permalink: pretty +paginate: 3 diff --git a/_includes/footer.html b/_includes/footer.html new file mode 100644 index 0000000..dcf7ce9 --- /dev/null +++ b/_includes/footer.html @@ -0,0 +1,5 @@ + \ No newline at end of file diff --git a/_includes/header.html b/_includes/header.html new file mode 100644 index 0000000..438d9dd --- /dev/null +++ b/_includes/header.html @@ -0,0 +1,5 @@ +
+
+ +
+
\ No newline at end of file diff --git a/_includes/navigation.html b/_includes/navigation.html new file mode 100644 index 0000000..7f8f9bd --- /dev/null +++ b/_includes/navigation.html @@ -0,0 +1,12 @@ + \ No newline at end of file diff --git a/_includes/pagination.html b/_includes/pagination.html new file mode 100644 index 0000000..eb37157 --- /dev/null +++ b/_includes/pagination.html @@ -0,0 +1,35 @@ +{% if paginator.previous_page || paginator.next_page %} + +{% endif %} diff --git a/_includes/post.html b/_includes/post.html new file mode 100644 index 0000000..15afb98 --- /dev/null +++ b/_includes/post.html @@ -0,0 +1,9 @@ +
+

+ {{ post.title }} +

+

+ Posted by {{post.author}} on {{post.date | date_to_string}} +

+ {{ post.content }} +
\ No newline at end of file diff --git a/_layouts/default.html b/_layouts/default.html new file mode 100644 index 0000000..d786c67 --- /dev/null +++ b/_layouts/default.html @@ -0,0 +1,20 @@ + + + + Big Geek Trip | Geeks Of London + + + + + {% include header.html %} +
+
+ {% include navigation.html %} +
+ {{ content }} +
+
+
+ {% include footer.html %} + + diff --git a/_layouts/page.html b/_layouts/page.html new file mode 100644 index 0000000..1d29465 --- /dev/null +++ b/_layouts/page.html @@ -0,0 +1,10 @@ +--- +layout: default +--- +
+

+ {{ page.title }} +

+
+ {{ page.content }} +
diff --git a/_layouts/post.html b/_layouts/post.html new file mode 100644 index 0000000..d920354 --- /dev/null +++ b/_layouts/post.html @@ -0,0 +1,12 @@ +--- +layout: default +--- +
+

+ {{ page.title }} +

+

+ Posted by {{page.author}} on {{page.date | date_to_string}} +

+ {{ page.content }} +
diff --git a/css/reset.css b/css/reset.css new file mode 100644 index 0000000..cf3d1dd --- /dev/null +++ b/css/reset.css @@ -0,0 +1,48 @@ +/* http://meyerweb.com/eric/tools/css/reset/ + v2.0 | 20110126 + License: none (public domain) +*/ + +html, body, div, span, applet, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, acronym, address, big, cite, code, +del, dfn, em, img, ins, kbd, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, center, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td, +article, aside, canvas, details, embed, +figure, figcaption, footer, header, hgroup, +menu, nav, output, ruby, section, summary, +time, mark, audio, video { + margin: 0; + padding: 0; + border: 0; + font-size: 100%; + font: inherit; + vertical-align: baseline; +} +/* HTML5 display-role reset for older browsers */ +article, aside, details, figcaption, figure, +footer, header, hgroup, menu, nav, section { + display: block; +} +body { + line-height: 1; +} +ol, ul { + list-style: none; +} +blockquote, q { + quotes: none; +} +blockquote:before, blockquote:after, +q:before, q:after { + content: ''; + content: none; +} +table { + border-collapse: collapse; + border-spacing: 0; +} \ No newline at end of file diff --git a/css/screen.css b/css/screen.css new file mode 100644 index 0000000..5587f5c --- /dev/null +++ b/css/screen.css @@ -0,0 +1,154 @@ +@import url("reset.css"); + +body { + background-color: #efefef; + margin-top: 20px; + font-family: 'Lato', sans-serif; + line-height: 1.47em; +} + +a { + color: #3c595c; +} + +strong { + font-weight: bold; +} + +p { + margin-bottom: 20px; +} + + +hr { + border: 0px; + height: 1px; + background-color: #dadada; + margin-bottom: 20px; +} + +header { + background-color: #f9f9f9; + border-bottom: 1px solid #d5d5d5; + border-top: 1px solid #d5d5d5; + padding: 20px 0px; +} + +section { + padding: 20px 0px; + overflow: auto; + background-color: #fff; + border-bottom: 1px solid #d5d5d5; + padding-bottom: 40px; +} + +section aside { + float: left; + width: 140px; + text-align: right; + border-bottom: 1px solid #ddd; +} + +section aside li { + padding: 5px 3px; + border-top: 1px solid #ddd; + font-size: 15px; + font-weight: bold; +} + +section aside a { + text-decoration: none; + color: #333; +} + +section aside .active { + background-color: #f9f9f9; +} + +section aside .active a { + color: #3c595c; +} + +section .content { + float: right; + width: 475px; +} + +section article { + margin-bottom: 40px; +} + +section article h1 { + font-size: 30px; + font-weight:bold; +} + +section .content h2 { + font-size: 24px; + line-height: 32px; + font-weight:bold; + margin-bottom: 5px; + color: #3c595c; + border-bottom: 1px solid #dadada; + padding-bottom: 5px; +} + +section .content ul { + margin-bottom: 20px; + list-style: disc outside; + margin-left: 20px; +} + +section article h1 a { + text-decoration: none; +} + +section article .author { + font-size: 13px; +} + +section .content .info { + background-color: #f2f2f2; + padding: 10px 20px; + margin-bottom: 20px; +} + +section .content .info ul { + margin-bottom: 0px; +} + +.wrapper { + width: 640px; + margin: 0px auto; +} + +.pagination { + background-color: #fafafa; + border-bottom: 1px solid #ddd; + border-top: 1px solid #ddd; + padding: 3px 5px; + text-align: center; + font-size: 13px; +} + +.pagination .previous { + float: left; + text-decoration: none; +} + +.pagination .next { + float: right; + text-decoration: none; +} + +footer { + background-color: #fafafa; + border-bottom: 1px solid #ddd; + font-size: 0.8em; + padding: 3px 0px; +} + +footer .wrapper { + width: 480px; + padding-left: 170px; +} \ No newline at end of file diff --git a/images/logo.jpg b/images/logo.jpg new file mode 100644 index 0000000..1fe9d21 Binary files /dev/null and b/images/logo.jpg differ diff --git a/images/logo.png b/images/logo.png new file mode 100644 index 0000000..6685a0d Binary files /dev/null and b/images/logo.png differ diff --git a/index.html b/index.html deleted file mode 100644 index 03f9801..0000000 --- a/index.html +++ /dev/null @@ -1 +0,0 @@ -My GitHub Page