This file contains hidden or 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: GitHub Pages Blog | |
--- | |
<h1>{{ page.title }}</h1> | |
<ul class="posts"> | |
{% for post in site.posts %} | |
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}" title="{{ post.title }}">{{ post.title }}</a></li> | |
{% endfor %} |
This file contains hidden or 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: post | |
title: My First Post | |
date: 2015-04-03 | |
--- | |
Write something about your experience in this workshop. |
This file contains hidden or 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 | |
--- | |
<h1>{{ page.title }}</h1> | |
<p class="meta">{{ page.date | date_to_string }}</p> | |
<div class="post"> | |
{{ content }} | |
</div> |
This file contains hidden or 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: Working With GitHub Pages | |
--- | |
<div class="container"> | |
<div class="blurb"> | |
<h1>Working With GitHub Pages</h1> | |
<p>During today's session, we will learn how to build a personal website using GitHub Pages. <a href="/about">Learn about Git, GitHub, and GitHub Pages</a></p> | |
</div><!-- /.blurb --> |
This file contains hidden or 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> | |
<head> | |
<title>{{ page.title }}</title> | |
<!-- link to main stylesheet --> | |
<link rel="stylesheet" type="text/css" href="/css/main.css"> | |
</head> | |
<body> | |
<nav> | |
<ul> |
This file contains hidden or 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
name: Working with GitHub Pages | |
markdown: redcarpet | |
pygments: true | |
authors: | |
Ramona: | |
name: Ramona Romero | |
display_name: Ramona | |
email: [email protected] | |
twitter: Ramona2020 | |
github: Ramona2020 |
This file contains hidden or 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
_site/ |
This file contains hidden or 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
<link rel="stylesheet" type="text/css" href="/css/main.css"> |
This file contains hidden or 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
body { | |
margin: 60px auto; | |
width: 70%; | |
} | |
nav ul, footer ul { | |
font-family:'Helvetica', 'Arial', 'Sans-Serif'; | |
padding: 0px; | |
list-style: none; | |
font-weight: bold; | |
} |
This file contains hidden or 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> | |
<head> | |
<title>Working With GitHub Pages</title> | |
</head> | |
<body> | |
<nav> | |
<ul> | |
<li><a href="/">Home</a></li> | |
<li><a href="/about">About</a></li> |