Skip to content

Commit

Permalink
Added metallo.js blog code
Browse files Browse the repository at this point in the history
Also changed the baseUrl variable to take consideration of the fact that the website is served for www.mokacoding.com
  • Loading branch information
mokagio committed Jul 12, 2014
1 parent df7d2c6 commit 02f9d5e
Show file tree
Hide file tree
Showing 63 changed files with 2,888 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Makefile
@@ -0,0 +1,6 @@
serve:
./node_modules/http-server/bin/http-server -p 8000

watch:
node ./metallo/build.js
node ./metallo/watch.js
9 changes: 9 additions & 0 deletions README 2.md
@@ -0,0 +1,9 @@
# metallo.js

This is just an experiment I'm running to understand if [metalsmith](http://metalsmith.io) is a valid alternative to [Jekyll](http://jekyllrb.com/).

## Run

`make serve` will serve the static website locally on port 8000.

Optionally run `make watch`, in another terminal, to watch the `src` folder and rebuild every time a file changes.
3 changes: 3 additions & 0 deletions TODO.md
@@ -0,0 +1,3 @@
# TODO

* h1.brand is redundand, could just be a spec in .col-12.header
255 changes: 255 additions & 0 deletions metallo/build.js
@@ -0,0 +1,255 @@
// A lot of this is taken form https://github.com/lsjroberts/gelatin-design/blob/master/build.js

var metalsmith = require("metalsmith")
, markdown = require("metalsmith-markdown")
, templates = require("metalsmith-templates")
, collections = require("metalsmith-collections")
, permalinks = require("metalsmith-permalinks")
, branch = require("metalsmith-branch")
, ignore = require("metalsmith-ignore")
;

var baseUrl = "/mokacoding-metalsmith/";
// TODO: find something better
// turn on for development
baseUrl = "/";

metalsmith(__dirname)
.source("src")
.destination("..")
.clean(true).except([
".git",
"metallo",
"node_modules",
".gitignore",
"Makefile",
"npm-shrinkwrap.json",
"package.json",
"README.md",
"TODO.md"
])

.use(ignore("templates/*"))
.use(ignore("assets/*"))

.use(function(files, metalsmith, done) {
metalsmith.metadata().baseUrl = baseUrl;
done();
})

// automatically set some values for the posts
// lazy devolepers => smart developers
.use(branch("posts/*.md")
.use(function (files, metalsmith, done) {
for (var key in files) {
var post = files[key];
var name = key.split("/").pop();

var date = post.date;
if (!date) {
date = name.slice(0,10);
post.date = new Date(date);
}

// set post slug based on file name
var slug = name.slice(11, -3);
post.slug = slug;

// set tags to empty array if tags are missing form post
// (this avoids crashes in the templete)
// TODO: or should it be responsibility of the template to check that tags exist?
var tags = post.tags;
if (!tags) { post.tags = []; }
}
done();
})
)

// important: collections must be set before templates
// or the templates won't have the variables and crash
.use(collections({
posts: {
pattern: "posts/*",
sortBy: "date",
reverse: true
}
}))

.use(markdown({
highlight: function (code) {
return require('highlight.js').highlightAuto(code).value;
},
langPrefix: 'hljs '
}))

.use(branch("posts/*.html")
.use(permalinks({
pattern: 'blog/:slug'
}))
.use(function (files, metalsmith, done) {
for (var file in files) {
files[file].template = 'post.jade';
}
done();
})
.use(function (files, metalsmith, done) {
for (var key in files) {
post = files[key];

var day = post.date.getDate();
if (day < 10) { day = "0" + day; }

var month = post.date.getMonth() + 1;
if (month < 10) { month = "0" + month; }

var path = post.date.getFullYear() + "/" + month + "/" + day + "/" + post.slug + ".html";

var retrocompatible_post = {};
for (var _key in post) {
retrocompatible_post[_key] = post[_key];
}

files[path] = retrocompatible_post;
}
done();
})
)

// for the moment the blog has a post per page, no point in paginating it when collections already
// provider next and previous
// .use(paginator)
.use(tagList)

// temp fix for metalsmith-template corrupting images
// see https://github.com/segmentio/metalsmith/issues/60 and https://github.com/segmentio/metalsmith-templates/issues/17
.use(branch(filterImages)
.use(templates({
engine: "jade",
directory: "src/templates"
}))
)

.build(function(err) {
if (err) {
throw err;
} else {
console.log("✔ done");
}
}
);

function filterImages(filename, properties, index) {
var extension = filename.split('.').pop().toLowerCase();
var imageExtensions = [ "jpg", "jpeg", "png" ];
var notAnImage = imageExtensions.indexOf(extension) == -1;
return notAnImage;
}


function paginator(files, metalsmith, done) {

/*
* mokagio's version
*
var posts = metalsmith.data.posts;
var pages = [];
var postsPerPage = 2;
var numberOfPages = Math.ceil(posts.length / postsPerPage);
for (var i = 0; i < numberOfPages; i++) {
pages.push( posts.slice((postsPerPage * i), ((postsPerPage * i) + postsPerPage)) );
}
console.log(pages);
console.log("Built an array of " + pages.length + " pages, with " + postsPerPage + " items per page. Last page has " + pages[numberOfPages - 1].length + " items");
var index = files['index.md'];
index.posts = pages[0];
*/

// lsjroberts version
var index = files['index.html'],
original_posts = metalsmith.data.posts,
perPage = 1;

// hack for rendering of multiple templates.
//
// if we push the original post object in the pagination array, when it comes to render the pagination view jade is gonna render
// first the pagination, which extends the base template, then when it comes to the post it's gonna render the post as it's own
// page extending the base template as well, this means that we're gonna end up with a weird page inside the page.
//
// i'm sure that to avoid it there must be some option to pass to the jade compiler, but i haven't find it yet.
//
// what we do here is manually copy (by value) the posts array in order to be able to reset the template of the object that will
// go in the pagination array, without changing the original one.
posts = [];
for (var i = 0; i < original_posts.length; i++) {
original_post = original_posts[i];
post = {};
for (var key in original_post) {
if (key != 'template') {
post[key] = original_post[key];
}
}
posts.push(post);
}

index.posts = posts.slice(0,perPage);
index.currentPage = 1;
index.numPages = Math.ceil(posts.length / perPage);
index.pagination = [];

for (var i = 1; i <= index.numPages; i++) {
index.pagination.push({
num: i,
url: (1 == i) ? '' : 'index/' + i
});

if (i > 1) {
files['index/' + i + '/index.html'] = {
template: 'index.jade',
mode: '0644',
contents: '',
title: 'Page ' + i + ' of ' + index.numPages,
posts: posts.slice((i-1) * perPage, ((i-1) * perPage) + perPage),
currentPage: i,
numPages: index.numPages,
pagination: index.pagination,
};
}
}

done();
}

function tagList(files, metalsmith, done) {
var tags = {};

for (var post in metalsmith.data.posts) {
for (var t in metalsmith.data.posts[post].tags) {
tag = metalsmith.data.posts[post].tags[t];
tag = tag.replace(/ /g, "-");
if (! tags[tag]) {
tags[tag] = [];
}

tags[tag].push(metalsmith.data.posts[post]);
}
}

for (var tag in tags) {
path = 'tag/' + tag + '/index.html';
files[path] = {
template: 'tag-index.jade',
mode: '0644',
contents: '',
title: "Posts tagged '" + tag + "'",
posts: tags[tag],
tag: tag,
path: path,
};
}

done();
}
Binary file added metallo/src/assets/2013-09-16-missing-link.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metallo/src/assets/2013-09-16-submit-today.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metallo/src/assets/2013-09-16-use-xcode5.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metallo/src/assets/2013-10-31-afnetworking_fs.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metallo/src/assets/2014-03-28-pods-targets.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metallo/src/assets/2014-04-03-blur-buttons.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metallo/src/assets/2014-04-03-blur.jpg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added metallo/src/assets/2014-04-03-gbs-icon.png
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
69 changes: 69 additions & 0 deletions metallo/src/css/griddy.css
@@ -0,0 +1,69 @@
.row-12 {
margin-bottom: 20px;
margin-left: -10px;
margin-right: -10px;
zoom: 1;
@media screen and (max-width: 400px) {
}
}
.row-12:before,
.row-12:after {
content: '';
display: table;
}
.row-12:after {
clear: both;
}
.row-12 .col-1 {
width: 8.333333333333334%;
}
.row-12 .col-2 {
width: 16.666666666666668%;
}
.row-12 .col-3 {
width: 25%;
}
.row-12 .col-4 {
width: 33.333333333333336%;
}
.row-12 .col-5 {
width: 41.666666666666664%;
}
.row-12 .col-6 {
width: 50%;
}
.row-12 .col-7 {
width: 58.333333333333336%;
}
.row-12 .col-8 {
width: 66.66666666666667%;
}
.row-12 .col-9 {
width: 75%;
}
.row-12 .col-10 {
width: 83.33333333333333%;
}
.row-12 .col-11 {
width: 91.66666666666667%;
}
.row-12 .col-12 {
width: 100%;
}
.row-12 .col-1, .row-12 .col-2, .row-12 .col-3, .row-12 .col-4, .row-12 .col-5, .row-12 .col-6, .row-12 .col-7, .row-12 .col-8, .row-12 .col-9, .row-12 .col-10, .row-12 .col-11 {
float: left;
padding: 0 10px;
box-sizing: border-box;
min-height: 1px;
}
@media screen and (max-width: 400px) {
.row-12 {
margin: 0;
}
.row-12 .col-1, .row-12 .col-2, .row-12 .col-3, .row-12 .col-4, .row-12 .col-5, .row-12 .col-6, .row-12 .col-7, .row-12 .col-8, .row-12 .col-9, .row-12 .col-10, .row-12 .col-11 {
float: none;
width: auto;
display: block;
margin-bottom: 20px;
}
}

0 comments on commit 02f9d5e

Please sign in to comment.