-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Now forkable and configurable - Blog coming soon!
- Loading branch information
Victor Lourng
committed
Aug 11, 2014
1 parent
72c183d
commit cb84127
Showing
18 changed files
with
341 additions
and
147 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<div class="c"> | ||
<header class="post-header"> | ||
<h1>{{ page.title }}</h1> | ||
<p class="lead">{{ page.subtitle }}</p> | ||
</header> | ||
</div> | ||
|
||
<!-- END COVER --> | ||
</div> | ||
|
||
<section class="post"> | ||
|
||
<div class="c"> | ||
|
||
<article class="post-content"> | ||
{{ content }} | ||
</article> | ||
</div> | ||
|
||
</section> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
--- | ||
categories: blog | ||
layout: blog | ||
title: Hello World! | ||
subtitle: "This is a test." | ||
permalink: "/hello-world/" | ||
author: Victor Lourng | ||
author-link: "http://victorlourng.com/" | ||
background: "rgb(119, 40, 23)" | ||
published: true | ||
--- | ||
|
||
This is a test of the HS Hackers blog system. | ||
|
||
Feel free to contribute to this repo and have fun! | ||
|
||
> Nothing to see here! |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
--- | ||
layout: page | ||
title: Blog (Coming Soon) | ||
caption: Fresh & hot | ||
subtitle: Curated articles fresh off the press! | ||
icon: newspaper | ||
background: "#F15823" | ||
permalink: /blog/ | ||
navigation: hidden | ||
--- | ||
|
||
<h2>Upcoming Meetups</h2> | ||
<div class="meetups"> | ||
{% assign curDate = site.time | date: '%s' %} | ||
{% for post in site.posts %} | ||
{% assign postStartDate = post.date | date: '%s' %} | ||
{% if postStartDate >= curDate %} | ||
<a class="post-link white-box" href="{{ post.url | prepend: site.baseurl }}"> | ||
<div class="preview" style="background:{{ post.background }}"> | ||
<div class="date"> | ||
<small>{{ post.date | date: "%B" }}</small> | ||
{{ post.date | date: "%-d" }} | ||
</div> | ||
</div> | ||
<h3>{{ post.title }}</h3> | ||
<p>{{ post.date | date: "%H:%M" }} at {{ post.address }}</p> | ||
</a> | ||
<br> | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
<br> | ||
|
||
<h2>Recent Meetups</h2> | ||
<div class="meetups"> | ||
{% assign curDate = site.time | date: '%s' %} | ||
{% for post in site.posts %} | ||
{% assign postStartDate = post.date | date: '%s' %} | ||
{% if curDate > postStartDate %} | ||
<a class="post-link white-box" href="{{ post.url | prepend: site.baseurl }}"> | ||
<div class="preview" style="background:{{ post.background }}"> | ||
<div class="date"> | ||
<small>{{ post.date | date: "%B" }}</small> | ||
{{ post.date | date: "%-d" }} | ||
</div> | ||
</div> | ||
<h3>{{ post.title }}</h3> | ||
<p>{{ post.date | date: "%H:%M" }} at {{ post.address }}</p> | ||
</a> | ||
<br> | ||
{% endif %} | ||
{% endfor %} | ||
</div> | ||
|
||
<p>For the debugging purposes, this site was last built at {{ site.time | date: '%s' }} UNIX time.</p> |
Oops, something went wrong.