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
# General Settings | |
title: My New NorthStack Blog | |
email: [email protected] | |
description: "Welcome to my new blog running on Jekyll and NorthStack!" | |
baseurl: "" | |
url: "" | |
# Build settings | |
markdown: kramdown |
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
<!doctype html> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>{{ page.title }}</title> | |
<link rel="stylesheet" href="/assets/css/main.css"> | |
</head> | |
<body> | |
{% include header.html %} | |
<main> |
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
--- | |
layout: default | |
title: NorthStack Example Blog | |
--- | |
<div class="posts"> | |
{% for post in site.posts %} | |
<article> | |
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2> | |
Published on {{ post.date | date_to_string }} | |
{{ post.excerpt }} |
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
--- | |
layout: default | |
--- | |
<article> | |
<h2>{{ page.title }}</h2> | |
Published on {{ page.date | date_to_string }} | |
{{ content }} | |
</article> |
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
--- | |
layout: default | |
--- | |
<article> | |
<h2>{{ page.title }}</h2> | |
{{ content }} | |
</article> |
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
<header> | |
<div class="site-name nav-link"><a href="{{ site.url }}">{{ site.title }}</a></div> | |
<nav> | |
<ul class="nav"> | |
{% for item in site.data.navigation %} | |
<li class="nav-item"> | |
<a class="nav-link" href="{{ item.path }}">{{ item.title }}</a> | |
</li> | |
{% endfor %} | |
</ul> |
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
--- | |
layout: home | |
--- |
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
--- | |
layout: page title: About | |
permalink: /about/ | |
--- | |
Just some dude who loves NorthStack. |
OlderNewer