Skip to content

Latest commit

 

History

History
84 lines (57 loc) · 2.05 KB

index.md

File metadata and controls

84 lines (57 loc) · 2.05 KB
layout title tagline
page
Welcome to my blog

{% include JB/setup %}

{%comment%} Read Jekyll Quick Start

Complete usage and documentation available at: Jekyll Bootstrap {%endcomment%}

I'm starting to blog! This will mostly be a programming blog to start, but who knows how it will evolve over time.

Recent Posts

    {% for post in site.posts %}
  • {{ post.date | date_to_string }} - {{ post.title }}

    {{ post.excerpt | markdownify }}

  • {% endfor %}

{%comment%}

Code Highlighting

{% highlight scala linenos %} object Replicator { case class Replicate(key: String, valueOption: Option[String], id: Long) case class Replicated(key: String, id: Long)

case class Snapshot(key: String, valueOption: Option[String], seq: Long) case class SnapshotAck(key: String, seq: Long)

def props(replica: ActorRef): Props = Props(new Replicator(replica)) } {% endhighlight %}

Gist Link

{% gist johnmcase/e8d487a585e5cba545c5 %}

Update Author Attributes

In _config.yml remember to specify your own data:

title : My Blog =)

author :
  name : Name Lastname
  email : blah@email.test
  github : username
  twitter : username

The theme should reference these variables whenever needed.

Sample Posts

This blog contains sample posts which help stage pages and blog data. When you don't need the samples anymore just delete the _posts/core-samples folder.

$ rm -rf _posts/core-samples

Here's a sample "posts list".

    {% for post in site.posts %}
  • {{ post.date | date_to_string }} » {{ post.title }}
  • {% endfor %}

To-Do

This theme is still unfinished. If you'd like to be added as a contributor, please fork! We need to clean up the themes, make theme usage guides with theme-specific markup examples.

{%endcomment%}