diff --git a/Gemfile b/Gemfile index 5b93f71..eac2ab1 100644 --- a/Gemfile +++ b/Gemfile @@ -2,5 +2,3 @@ source 'https://rubygems.org' require 'rbconfig' gem 'wdm', '>=0.1.0' if RbConfig::CONFIG['target_os'] =~ /mswin|mingw/i gem 'github-pages' -# force minimum version of pygments.rb to fix windows issue -gem 'pygments.rb', '>=0.6.1' diff --git a/_config.yml b/_config.yml index 0d5bb54..66fba05 100644 --- a/_config.yml +++ b/_config.yml @@ -1,13 +1,27 @@ -# General -safe: false -timezone: America/Indiana/Indianapolis +# Github Enforced +safe: true +lsi: false + +#General +timezone: US/Central +encoding: utf-8 url: http://blog.voltaicideas.net # Excludes -exclude: ['Readme.md', 'config.rb', 'scss', 'Gemfile', 'Gemfile.lock', 'bower_components', 'node_modules', 'Gruntfile.js', 'package.json', 'bower.json'] +exclude: [ + 'README.md', + 'Gemfile', + 'Gemfile.lock', + 'CNAME', + 'assets/css', + 'assets/js', + 'assets/node_modules', + 'assets/gulpfile.js', + 'assets/package.json', +] # Code highlighting -pygments: true +highlighter: pygments # links permalink: date @@ -15,20 +29,39 @@ permalink: date # Markdown markdown: redcarpet redcarpet: - smart: true - extensions: ['no_intra_emphasis', 'tables', 'disable_indented_code_blocks', 'strikethrough', 'superscript', 'underline'] + smart: true + extensions: [ + 'no_intra_emphasis', + 'tables', + 'disable_indented_code_blocks', + 'strikethrough', + 'superscript', + 'underline', + 'highlight' + ] -# Extra Variables -owner: - name: Andrew Senetar - email: arsenetar@gmail.com +# Defaults for the front matter +defaults: + - + scope: + path: "" # all files + values: + layout: "post" + - + scope: + path: "" + type: "posts" # all posts + values: + layout: "post" + - + scope: + path: "" + type: "pages" + values: + layout: "page" + +# Extra Variables for the templates +owner: + name: Andrew Senetar + email: arsenetar@gmail.com title: Blog@VoltaicIdeas - -# Disqus -disqus_shortname: voltaicideas - -# Google Analytics -ga: - code: UA-42346765-1 - domain: voltaicideas.net - diff --git a/_includes/disqus.html b/_includes/disqus.html deleted file mode 100644 index 0979411..0000000 --- a/_includes/disqus.html +++ /dev/null @@ -1,21 +0,0 @@ - - -comments powered by Disqus diff --git a/_includes/footer.html b/_includes/footer.html index 1eca404..fe8f179 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -1,23 +1,8 @@ - - -{% if site.ga %} - -{% endif %} -{% if page.comments %} -{% include disqus.html %} -{% endif %} - + + + + + diff --git a/_includes/header.html b/_includes/header.html index 479a415..722fce1 100644 --- a/_includes/header.html +++ b/_includes/header.html @@ -1,6 +1,6 @@ - - + + {% if page.title != nil %}{{ page.title }} - {% endif %}{{ site.title }} @@ -12,33 +12,30 @@ {% if site.owner.google_plus %}{% endif %} - + - + - - - - - -
- -
+ + + + +
+
+

{{ page.title }}

+ {% if page.subtitle %} +

{{ page.subtitle }}

+ {% endif %} +
diff --git a/_layouts/list.html b/_layouts/list.html index b039639..7a631f5 100644 --- a/_layouts/list.html +++ b/_layouts/list.html @@ -1,12 +1,5 @@ {% include header.html %} -
-
-

{{ page.title }}

-
-
-
-
- {{ content }} -
+
+ {{ content }}
{% include footer.html %} diff --git a/_layouts/notFound.html b/_layouts/notFound.html index ecaae72..7a631f5 100644 --- a/_layouts/notFound.html +++ b/_layouts/notFound.html @@ -1,7 +1,5 @@ {% include header.html %} -
-
- {{ content }} -
+
+ {{ content }}
-{% include footer.html %} \ No newline at end of file +{% include footer.html %} diff --git a/_layouts/page.html b/_layouts/page.html index a2675ba..2d02640 100644 --- a/_layouts/page.html +++ b/_layouts/page.html @@ -1,30 +1,35 @@ {% include header.html %} +
{% if page.feature %} -
-
- - {% if page.feature.credit %} -
- Image Source: {{ page.feature.credit }} -
- {% endif %} +
+ + {% if page.feature.credit %} +
+ Image Source: {{ page.feature.credit }}
-
-{% endif %} - -
-
-
-

{{ page.title }}

-
-
- {{ content }} -
-
- {% if page.modified %} - Last modified: - {% endif %} -
-
+ {% endif %} +
+ {% endif %} +
+
+
+ {% if page.modified %} + Last Updated: + + {% endif %} + +
+
+
+ {{ content }} +
+ {% if page.links %} +
+ {% for link in page.links %} + + {% endfor %} +
+ {% endif %} +
{% include footer.html %} diff --git a/_layouts/post.html b/_layouts/post.html index 2c4078d..8b22b63 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -1,52 +1,37 @@ {% include header.html %} +
{% if page.feature %} -
-
- - {% if page.feature.credit %} -
- Image Source: {{ page.feature.credit }} -
+
+ + {% if page.feature.credit %} +
+ Image Source: {{ page.feature.credit }} +
+ {% endif %} +
+{% endif %} +
+
+
+ By {% if page.author != nil %}{{ page.author }} - {% endif %}{{ site.owner.name }} + - Published: + {% if page.modified %} + (Revised: + ) {% endif %} + +
+
+
+ {{ content }}
+ {% if page.links %} +
+ {% for link in page.links %} + + {% endfor %} +
+ {% endif %} +
-{% endif %} -
-
-
-

- {{ page.title }} -

-
- -
-
-
- {{ content }} -
-
- - - Published: {% if page.modified %}(Revised: ){% endif %} By: - - -
- {% for tag in page.tags %} - {{ tag }} - {% endfor %} -
-
-
-
-{% if site.disqus_shortname and page.comments %} -
-
-
-
-
-{% endif %} {% include footer.html %} diff --git a/assets/css/_sideMenu.css b/assets/css/_sideMenu.css index 5aac195..0d9be51 100644 --- a/assets/css/_sideMenu.css +++ b/assets/css/_sideMenu.css @@ -127,7 +127,7 @@ appears on the left side of the page. ul { border: none; background: transparent; - border-top: 1px solid #333; + border-top: 1px solid color(var(--menuBgColor) l(-15%)); } li { @@ -140,7 +140,7 @@ appears on the left side of the page. /* Border to divide groups */ .menu-item-divided { - border-top: 1px solid #333; + border-top: 1px solid color(var(--menuBgColor) l(-15%)); } /* Selected item */ @@ -176,7 +176,6 @@ small screens. top: 0; left: 0; /* "#menu width" */ background: color(var(--globalBgColor) contrast(100%)); - background: color(var(--globalBgColor)B3 contrast(100%)); font-size: 10px; /* change this value to increase/decrease button size */ z-index: 10; width: 2em; @@ -216,8 +215,7 @@ Hides the menu at `48em`, but modify this based on your app's needs. */ @media (min-width: 48em) { - .header, - .content { + .header { padding-left: 2em; padding-right: 2em; } diff --git a/assets/css/app.css b/assets/css/app.css index a30ced4..1ac1838 100644 --- a/assets/css/app.css +++ b/assets/css/app.css @@ -70,8 +70,6 @@ a { } .content { - padding-left: 0.5rem; - padding-right: 0.5rem; a { text-decoration: underline; } @@ -100,9 +98,6 @@ a { article { header { - padding-left: 0.5rem; - padding-right: 0.5rem; - h5 { color: color(var(--globalBgColor) contrast(0%)); } @@ -143,14 +138,6 @@ article { } } -@media only screen { - .social a { - padding: 0 9px !important; - span { display: none; } - i { display: inline } - } -} - /* Styles for code blocks and inline code */ @import "_pygments"; @import "_pygments_friendly"; diff --git a/assets/dist/app.css b/assets/dist/app.css new file mode 100644 index 0000000..c1c3c7b --- /dev/null +++ b/assets/dist/app.css @@ -0,0 +1 @@ +@charset "UTF-8";html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background-color:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:700}dfn{font-style:italic}h1{font-size:2em;margin:.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-.5em}sub{bottom:-.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type=checkbox],input[type=radio]{box-sizing:border-box;padding:0}input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}input[type=search]{-webkit-appearance:textfield;box-sizing:content-box}input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid silver;margin:0 2px;padding:.35em .625em .75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:700}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}.hidden,[hidden]{display:none!important}img{max-width:100%;height:auto;display:block}table{border-collapse:collapse;border-spacing:0;empty-cells:show;border:1px solid #cbcbcb}table caption{color:#000;font:italic 85%/1 arial,sans-serif;padding:1em 0;text-align:center}table td,table th{border-left:1px solid #cbcbcb;border-width:0 0 0 1px;font-size:inherit;margin:0;overflow:visible;padding:.5em 1em}table td:first-child,table th:first-child{border-left-width:0}table thead{background-color:#e0e0e0;color:#000;text-align:left;vertical-align:bottom}table td{background-color:transparent}.pure-table-odd td,table tr:nth-child(2n-1) td{background-color:#f2f2f2}.pure-table-bordered td{border-bottom:1px solid #cbcbcb}.pure-table-bordered tbody>tr:last-child>td{border-bottom-width:0}.pure-table-horizontal td,.pure-table-horizontal th{border-width:0 0 1px;border-bottom:1px solid #cbcbcb}.pure-table-horizontal tbody>tr:last-child>td{border-bottom-width:0}.pure-menu{box-sizing:border-box}.pure-menu-fixed{position:fixed;left:0;top:0;z-index:1}.pure-menu-item,.pure-menu-list{position:relative}.pure-menu-list{list-style:none;margin:0;padding:0}.pure-menu-item{padding:0;margin:0;height:100%}.pure-menu-heading,.pure-menu-link{display:block;text-decoration:none;white-space:nowrap}#layout,#menu,.menu-link{-webkit-transition:all .2s ease-out;transition:all .2s ease-out}#layout{position:relative;padding-left:0}#layout.active #menu{left:220px;width:220px}#layout.active .menu-link{left:220px}#main{background-color:#fff}#main #mainHeader{margin:0;color:#2e2e2e;text-align:center;padding:2.5em 2em 0;border-bottom:1px solid #eee}#main #mainHeader h1{margin:.2em 0;font-size:3em;font-weight:300}#main #mainHeader h2,#main #mainHeader h3{font-weight:300;color:#c2c2c2;padding:0;margin-top:0}#main #mainContent{position:relative;margin:0 auto;padding:0 2em;max-width:50pc;margin-bottom:50px;line-height:1.6em}#main #mainContent .content-subhead{margin:50px 0 20px;font-weight:300;color:#757575}#menu{margin-left:-220px;width:220px;position:fixed;top:0;left:0;bottom:0;z-index:3;background:#e7e7e7;overflow-y:auto;-webkit-overflow-scrolling:touch}#menu a{color:#3d3d3d;border:0 0;padding:.6em 0 .6em .6em}#menu .pure-menu .pure-menu-heading{background:#9b160d;font-size:110%;color:#fff;margin:0;text-transform:uppercase}#menu .pure-menu ul{border:0 0;background:transparent;border-top:1px solid #c2c2c2}#menu .pure-menu li a:focus,#menu .pure-menu li a:hover{background:#f5f5f5}#menu .pure-menu .menu-item-divided{border-top:1px solid #c2c2c2}#menu .pure-menu .pure-menu-selected{background:#9b160d}#menu .pure-menu .pure-menu-selected a{color:#f2f2f2}#menu .pure-menu .pure-menu-selected a:focus,#menu .pure-menu .pure-menu-selected a:hover{background-color:#b31a0f}.menu-link{position:fixed;display:block;top:0;left:0;background:#000;font-size:10px;z-index:2;width:2em;height:auto;padding:2.1em 1.6em}.menu-link:focus,.menu-link:hover{background:#000}.menu-link span{position:relative;display:block}.menu-link span,.menu-link span:after,.menu-link span:before{background-color:#fff;width:100%;height:.2em}.menu-link span:after,.menu-link span:before{position:absolute;margin-top:-.6em;content:" "}.menu-link span:after{margin-top:.6em}@media(min-width:48em){.header{padding-left:2em;padding-right:2em}#layout{padding-left:220px;left:0}.menu-link{position:fixed;left:220px;display:none}#layout.active .menu-link,#menu{left:220px}}@media(max-width:48em){#layout.active{position:relative;left:0}}#mainFooter{text-align:right;margin-top:20px;padding:1.5em;background-color:#f7f7f7;color:#696b6b}#mainFooter a{color:#723b37}#mainFooter p{margin:0}a{color:#9b160d}a.iconLink{padding-right:7px;padding-left:7px;text-decoration:none}a:focus,a:hover{color:#cb1d10}a:visited{color:#9b160d}.social a i{display:none}.imageHeader{padding:0}.imageHeader img{max-width:100%;display:block}.imageHeader .imageCredit{text-align:right;font-size:.9em;background-color:#000;color:#fff;padding:3px 7px}.imageHeader .imageCredit a{color:#fff}.content a{text-decoration:underline}.tag{text-align:center;text-decoration:none;display:inline-block;padding:3px 7px;font-size:.6875rem;color:#8b251d;background-color:#e7e7e7;border-radius:3px}.tag:hover{background-color:#cfcfcf}.tag span{border-radius:3px;display:inline-block;margin-left:5px;background-color:#f5f5f5;padding:2px 5px}article header h5{color:#757575}article .content img{max-height:50pc;max-width:50pc;display:block;margin-right:auto;margin-left:auto}article .content table{margin-right:auto;margin-left:auto}article footer{color:#b5b5b5;margin-bottom:7px}article footer a{color:#723b37}article.excerpt{border-bottom:1px solid #e7e7e7;margin-bottom:7px;padding-bottom:7px}article.excerpt footer{margin-bottom:0}.highlight{font-size:14px;padding:0;font-family:Source Code Pro,Consolas,Monaco,monospace;overflow:auto;margin-bottom:1pc}.highlight pre{-moz-tab-size:4;tab-size:4;white-space:pre;font-family:inherit;background-color:#e7e7e7;border-radius:3px;padding:3px;padding-left:5px;line-height:23px;overflow-x:auto;word-break:inherit;margin:0}.highlight pre code{border:0 0;background:0 0}.highlight pre code.language-text{color:#191a1a}code{background:#e7e7e7;color:#191a1a;padding:3px 7px;border-radius:3px}.highlight .hll{background-color:#ffc}.highlight .c{color:#60a0b0;font-style:italic}.highlight .err{border:1px solid red}.highlight .k{color:#007020;font-weight:700}.highlight .o{color:#666}.highlight .cm{color:#60a0b0;font-style:italic}.highlight .cp{color:#007020}.highlight .c1{color:#60a0b0;font-style:italic}.highlight .cs{color:#60a0b0;background-color:#fff0f0}.highlight .gd{color:#a00000}.highlight .ge{font-style:italic}.highlight .gr{color:red}.highlight .gh{color:navy;font-weight:700}.highlight .gi{color:#00a000}.highlight .go{color:#888}.highlight .gp{color:#c65d09;font-weight:700}.highlight .gs{font-weight:700}.highlight .gu{color:purple;font-weight:700}.highlight .gt{color:#04d}.highlight .kp{color:#007020}.highlight .kc,.highlight .kd,.highlight .kn,.highlight .kr{color:#007020;font-weight:700}.highlight .kt{color:#902000}.highlight .m{color:#40a070}.highlight .na,.highlight .s{color:#4070a0}.highlight .nb{color:#007020}.highlight .nc{color:#0e84b5;font-weight:700}.highlight .no{color:#60add5}.highlight .nd{color:#555;font-weight:700}.highlight .ni{color:#d55537;font-weight:700}.highlight .ne{color:#007020}.highlight .nf{color:#06287e}.highlight .nl{color:#002070;font-weight:700}.highlight .nn{color:#0e84b5;font-weight:700}.highlight .nt{color:#062873;font-weight:700}.highlight .nv{color:#bb60d5}.highlight .ow{color:#007020;font-weight:700}.highlight .w{color:#bbb}.highlight .mb,.highlight .mf,.highlight .mh,.highlight .mi,.highlight .mo{color:#40a070}.highlight .sd{color:#4070a0;font-style:italic}.highlight .se{color:#4070a0;font-weight:700}.highlight .s2,.highlight .sb,.highlight .sc,.highlight .sh{color:#4070a0}.highlight .si{color:#70a0d0;font-style:italic}.highlight .sx{color:#c65d09}.highlight .sr{color:#235388}.highlight .s1{color:#4070a0}.highlight .ss{color:#517918}.highlight .bp{color:#007020}.highlight .vc,.highlight .vg,.highlight .vi{color:#bb60d5}.highlight .il{color:#40a070}@font-face{font-family:voltaicideas;src:url(..\fonts\voltaicideas);src:url(../fonts/voltaicideas.eot#iefix) format('embedded-opentype'),url(../fonts/voltaicideas.woff) format('woff'),url(../fonts/voltaicideas.ttf) format('truetype'),url(../fonts/voltaicideas.svg#fontello) format('svg')}[class*=icon-]{background-image:none;background-position:0 0;background-repeat:repeat;display:inline;height:auto;width:auto;vertical-align:baseline;line-height:1;margin-top:0;speak:none;font-family:voltaicideas;font-style:normal;font-weight:400;-webkit-font-feature-settings:normal;font-feature-settings:normal;font-variant:normal;text-transform:none;text-decoration:inherit;font-smoothing:antialiased}[class*=icon-]:before{text-decoration:inherit;display:inline-block;speak:none}[class*="border icon-"]{border:solid 1px #eee;padding:.2em .25em .15em;border-radius:3px}[class*="large icon-"]:before{vertical-align:-10%;font-size:1.333em}[class*="huge icon-"]:before{vertical-align:-17%;font-size:1.75em}[class*="2x icon-"]{font-size:2em}[class*="2x icon-"] .border{border-width:2px;border-radius:4px}[class*="3x icon-"]{font-size:3em}[class*="3x icon-"] .border{border-width:3px;border-radius:5px}[class*="4x icon-"]{font-size:4em}[class*="4x icon-"] .border{border-width:4px;border-radius:6px}[class*="5x icon-"]{font-size:5em}[class*="5x icon-"] .border{border-width:5px;border-radius:7px}a [class*=icon-]:before{display:inline}.icon-fork:before{content:'\e800'}.icon-lightbulb:before{content:'\e801'}.icon-bug:before{content:'\e802'}.icon-leaf:before{content:'\e803'}.icon-database:before{content:'\e804'}.icon-up-open:before{content:'\e805'}.icon-award:before{content:'\e806'}.icon-key:before{content:'\e807'}.icon-megaphone:before{content:'\e808'}.icon-linkedin:before{content:'\e809'}.icon-github:before{content:'\e80a'}.icon-gamepad:before{content:'\e80b'}.icon-plug:before{content:'\e80c'}.icon-terminal:before{content:'\e80d'}.icon-beaker:before{content:'\e80e'}.icon-gauge:before{content:'\e80f'}.icon-suitcase:before{content:'\e810'}.icon-music:before{content:'\e811'}.icon-videocam:before{content:'\e812'}.icon-camera:before{content:'\e813'}.icon-book:before{content:'\e814'}.icon-tasks:before{content:'\e815'}.icon-chart-bar:before{content:'\e816'}.icon-bookmark:before{content:'\e817'}.icon-tag:before{content:'\e818'} \ No newline at end of file diff --git a/assets/dist/app.js b/assets/dist/app.js new file mode 100644 index 0000000..61009c7 --- /dev/null +++ b/assets/dist/app.js @@ -0,0 +1 @@ +!function(window,document){function toggleClass(element,className){for(var classes=element.className.split(/\s+/),length=classes.length,i=0;length>i;i++)if(classes[i]===className){classes.splice(i,1);break}length===classes.length&&classes.push(className),element.className=classes.join(" ")}var layout=document.getElementById("layout"),menu=document.getElementById("menu"),menuLink=document.getElementById("menuLink");menuLink.onclick=function(e){var active="active";e.preventDefault(),toggleClass(layout,active),toggleClass(menu,active),toggleClass(menuLink,active)}}(this,this.document); \ No newline at end of file diff --git a/assets/gulpfile.js b/assets/gulpfile.js index bb8b8f5..c67aa19 100644 --- a/assets/gulpfile.js +++ b/assets/gulpfile.js @@ -31,10 +31,19 @@ var uglify = require('gulp-uglify'); var config = { 'cssDir': 'css', 'jsDir': 'js', - 'distDir': 'dist' + 'distDir': 'dist', + 'sourcemaps': true }; +gulp.task('dist', function(callback) { + config.sourcemaps = false; + return runSequence('clean', + ['css', 'js'], + callback); +}); + gulp.task('default', function(callback) { + return runSequence('clean', ['css', 'js'], callback); @@ -45,21 +54,37 @@ gulp.task('clean', function() { }); gulp.task('css', function() { - return gulp.src([config.cssDir+'/app.css']) - .pipe(sourcemaps.init()) - .pipe(postcss(processors)) - .on('error', function (error) { - console.log(error); - }) - .pipe(sourcemaps.write('./')) - .pipe(gulp.dest(config.distDir)); + if(config.sourcemaps) { + return gulp.src([config.cssDir+'/app.css']) + .pipe(sourcemaps.init()) + .pipe(postcss(processors)) + .on('error', function (error) { + console.log(error); + }) + .pipe(sourcemaps.write('./')) + .pipe(gulp.dest(config.distDir)); + } else { + return gulp.src([config.cssDir+'/app.css']) + .pipe(postcss(processors)) + .on('error', function (error) { + console.log(error); + }) + .pipe(gulp.dest(config.distDir)); + } }); gulp.task('js', function() { - return gulp.src([config.jsDir+'/*.js']) - .pipe(concat('app.js')) - .pipe(sourcemaps.init()) - .pipe(uglify({mangle: false})) - .pipe(sourcemaps.write('./')) - .pipe(gulp.dest(config.distDir)); + if(config.sourcemaps) { + return gulp.src([config.jsDir+'/*.js']) + .pipe(concat('app.js')) + .pipe(sourcemaps.init()) + .pipe(uglify({mangle: false})) + .pipe(sourcemaps.write('./')) + .pipe(gulp.dest(config.distDir)); + } else { + return gulp.src([config.jsDir+'/*.js']) + .pipe(concat('app.js')) + .pipe(uglify({mangle: false})) + .pipe(gulp.dest(config.distDir)); + } }); diff --git a/assets/js/app.js b/assets/js/app.js index 111fd77..2471282 100644 --- a/assets/js/app.js +++ b/assets/js/app.js @@ -1,4 +1,4 @@ -/* TODO */ +/* Application JS Code */ /* Menu Code */ (function (window, document) { diff --git a/atom.xml b/atom.xml index 2d4848f..e5b6382 100644 --- a/atom.xml +++ b/atom.xml @@ -1,9 +1,9 @@ --- -layout: nil +layout: null --- - + {{ site.title }} Jekyll @@ -32,5 +32,5 @@ layout: nil <p><a href="{{ site.url }}{{ post.url }}">{{ post.title }}</a> was originally published by {{ site.owner.name }} at <a href="{{ site.url }}/">{{ site.title }}</a> on {{ post.date | date: "%B %d, %Y" }}.</p> {% endfor %} - - \ No newline at end of file + + diff --git a/favicon.ico b/favicon.ico index ba3ba4c..8915e53 100644 Binary files a/favicon.ico and b/favicon.ico differ diff --git a/index.html b/index.html index fe98477..2e5879b 100644 --- a/index.html +++ b/index.html @@ -1,13 +1,14 @@ --- layout: list title: Latest Posts +subtitle: Cutting edge stuff here! description: 'Latest Posts from Blog@VoltaicIdeas' --- {% for post in site.posts limit: 10 %}

{{ post.title }}

-
By {{ site.owner.name }} Tagged: +
By {{ site.owner.name }} Tagged: {% for tag in post.tags %} {{ tag }} {% endfor %} diff --git a/robots.txt b/robots.txt index 54fb989..7d329b1 100644 --- a/robots.txt +++ b/robots.txt @@ -1,2 +1 @@ User-agent: * - diff --git a/sitemap.xml b/sitemap.xml index e59d8be..c095611 100644 --- a/sitemap.xml +++ b/sitemap.xml @@ -1,23 +1,23 @@ --- -layout: nil ---- +layout: null + {{ site.url }} - + {% for post in site.posts %} {{ site.url }}{{ post.url }} - {% if post.modified %}{{ post.modified | date_to_xmlschema }}{% else %}{{ post.date | date_to_xmlschema }}{% endif %} + {% if post.modified %}{{ post.modified | date_to_xmlschema }}{% else %}{{ post.date | date_to_xmlschema }}{% endif %} {% endfor %} - + {% for page in site.pages %} {{ site.url }}{{ page.url }} {{ site.time | date_to_xmlschema }} {% endfor %} - \ No newline at end of file + diff --git a/tags.html b/tags.html index 2d2c14d..62394c7 100644 --- a/tags.html +++ b/tags.html @@ -1,16 +1,9 @@ --- layout: list -title: Tags +title: Tags description: 'All Posts from Blog@VoltaicIdeas grouped by tag.' permalink: /tags/ --- -
-
- {% for tag in site.tags %} - {{ tag[0] }}{{ tag[1].size }} - {% endfor %} -
-
{% for tag in site.tags %}