-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
=
committed
Oct 7, 2018
1 parent
6edbf0f
commit 60d2dba
Showing
18 changed files
with
1,266 additions
and
2 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
--- | ||
layout: default | ||
title: "404: Page not found" | ||
permalink: 404.html | ||
--- | ||
|
||
<div class="page"> | ||
<h1 class="page-title">404: Page not found</h1> | ||
<p class="lead">Sorry, we've misplaced that URL or it's pointing to something that doesn't exist. <a href="{{ site.baseurl }}">Head back home</a> to try finding it again.</p> | ||
</div> |
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,118 @@ | ||
# Hyde | ||
|
||
Hyde is a brazen two-column [Jekyll](http://jekyllrb.com) theme that pairs a prominent sidebar with uncomplicated content. It's based on [Poole](http://getpoole.com), the Jekyll butler. | ||
|
||
![Hyde screenshot](https://f.cloud.github.com/assets/98681/1831228/42af6c6a-7384-11e3-98fb-e0b923ee0468.png) | ||
|
||
|
||
## Contents | ||
|
||
- [Usage](#usage) | ||
- [Options](#options) | ||
- [Sidebar menu](#sidebar-menu) | ||
- [Sticky sidebar content](#sticky-sidebar-content) | ||
- [Themes](#themes) | ||
- [Reverse layout](#reverse-layout) | ||
- [Development](#development) | ||
- [Author](#author) | ||
- [License](#license) | ||
|
||
|
||
## Usage | ||
|
||
Hyde is a theme built on top of [Poole](https://github.com/poole/poole), which provides a fully furnished Jekyll setup—just download and start the Jekyll server. See [the Poole usage guidelines](https://github.com/poole/poole#usage) for how to install and use Jekyll. | ||
|
||
|
||
## Options | ||
|
||
Hyde includes some customizable options, typically applied via classes on the `<body>` element. | ||
|
||
|
||
### Sidebar menu | ||
|
||
Create a list of nav links in the sidebar by assigning each Jekyll page the correct layout in the page's [front-matter](http://jekyllrb.com/docs/frontmatter/). | ||
|
||
``` | ||
--- | ||
layout: page | ||
title: About | ||
--- | ||
``` | ||
|
||
**Why require a specific layout?** Jekyll will return *all* pages, including the `atom.xml`, and with an alphabetical sort order. To ensure the first link is *Home*, we exclude the `index.html` page from this list by specifying the `page` layout. | ||
|
||
|
||
### Sticky sidebar content | ||
|
||
By default Hyde ships with a sidebar that affixes it's content to the bottom of the sidebar. You can optionally disable this by removing the `.sidebar-sticky` class from the sidebar's `.container`. Sidebar content will then normally flow from top to bottom. | ||
|
||
```html | ||
<!-- Default sidebar --> | ||
<div class="sidebar"> | ||
<div class="container sidebar-sticky"> | ||
... | ||
</div> | ||
</div> | ||
|
||
<!-- Modified sidebar --> | ||
<div class="sidebar"> | ||
<div class="container"> | ||
... | ||
</div> | ||
</div> | ||
``` | ||
|
||
|
||
### Themes | ||
|
||
Hyde ships with eight optional themes based on the [base16 color scheme](https://github.com/chriskempson/base16). Apply a theme to change the color scheme (mostly applies to sidebar and links). | ||
|
||
![Hyde in red](https://f.cloud.github.com/assets/98681/1831229/42b0b354-7384-11e3-8462-31b8df193fe5.png) | ||
|
||
There are eight themes available at this time. | ||
|
||
![Hyde theme classes](https://f.cloud.github.com/assets/98681/1817044/e5b0ec06-6f68-11e3-83d7-acd1942797a1.png) | ||
|
||
To use a theme, add anyone of the available theme classes to the `<body>` element in the `default.html` layout, like so: | ||
|
||
```html | ||
<body class="theme-base-08"> | ||
... | ||
</body> | ||
``` | ||
|
||
To create your own theme, look to the Themes section of [included CSS file](https://github.com/poole/hyde/blob/master/public/css/hyde.css). Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors. | ||
|
||
### Reverse layout | ||
|
||
![Hyde with reverse layout](https://f.cloud.github.com/assets/98681/1831230/42b0d3ac-7384-11e3-8d54-2065afd03f9e.png) | ||
|
||
Hyde's page orientation can be reversed with a single class. | ||
|
||
```html | ||
<body class="layout-reverse"> | ||
... | ||
</body> | ||
``` | ||
|
||
|
||
## Development | ||
|
||
Hyde has two branches, but only one is used for active development. | ||
|
||
- `master` for development. **All pull requests should be submitted against `master`.** | ||
- `gh-pages` for our hosted site, which includes our analytics tracking code. **Please avoid using this branch.** | ||
|
||
|
||
## Author | ||
|
||
**Mark Otto** | ||
- <https://github.com/mdo> | ||
- <https://twitter.com/mdo> | ||
|
||
|
||
## License | ||
|
||
Open sourced under the [MIT license](LICENSE.md). | ||
|
||
<3 |
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 |
---|---|---|
@@ -1,2 +1,26 @@ | ||
theme: jekyll-theme-hacker | ||
comments: true | ||
# Dependencies | ||
markdown: redcarpet | ||
highlighter: pygments | ||
|
||
# Permalinks | ||
permalink: pretty | ||
relative_permalinks: true | ||
|
||
# Setup | ||
title: whyn4 | ||
tagline: 'A Blog' | ||
description: 'A brazen two-column <a href="http://jekyllrb.com" target="_blank">Jekyll</a> theme that pairs a prominent sidebar with uncomplicated content. Made by <a href="https://twitter.com/mdo" target="_blank">@mdo</a>.' | ||
url: http://quynh-nguyen.github.io | ||
baseurl: / | ||
|
||
author: | ||
name: 'Quynh Nguyen' | ||
url: https://github.com/Quynh-Nguyen | ||
|
||
paginate: 5 | ||
|
||
# Custom vars | ||
version: 2.1.0 | ||
|
||
github: | ||
repo: https://github.com/Quynh-Nguyen/quynh-nguyen.github.io |
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,29 @@ | ||
<head> | ||
<link href="http://gmpg.org/xfn/11" rel="profile"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
<meta http-equiv="content-type" content="text/html; charset=utf-8"> | ||
|
||
<!-- Enable responsiveness on mobile devices--> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1"> | ||
|
||
<title> | ||
{% if page.title == "Home" %} | ||
{{ site.title }} · {{ site.tagline }} | ||
{% else %} | ||
{{ page.title }} · {{ site.title }} | ||
{% endif %} | ||
</title> | ||
|
||
<!-- CSS --> | ||
<link rel="stylesheet" href="{{ site.baseurl }}public/css/poole.css"> | ||
<link rel="stylesheet" href="{{ site.baseurl }}public/css/syntax.css"> | ||
<link rel="stylesheet" href="{{ site.baseurl }}public/css/hyde.css"> | ||
<link rel="stylesheet" href="http://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface"> | ||
|
||
<!-- Icons --> | ||
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.baseurl }}public/apple-touch-icon-144-precomposed.png"> | ||
<link rel="shortcut icon" href="{{ site.baseurl }}public/favicon.ico"> | ||
|
||
<!-- RSS --> | ||
<link rel="alternate" type="application/rss+xml" title="RSS" href="/atom.xml"> | ||
</head> |
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,36 @@ | ||
<div class="sidebar"> | ||
<div class="container sidebar-sticky"> | ||
<div class="sidebar-about"> | ||
<h1> | ||
<a href="{{ site.baseurl }}"> | ||
{{ site.title }} | ||
</a> | ||
</h1> | ||
<p class="lead">{{ site.description }}</p> | ||
</div> | ||
|
||
<nav class="sidebar-nav"> | ||
<a class="sidebar-nav-item{% if page.url == site.baseurl %} active{% endif %}" href="{{ site.baseurl }}">Home</a> | ||
|
||
{% comment %} | ||
The code below dynamically generates a sidebar nav of pages with | ||
`layout: page` in the front-matter. See readme for usage. | ||
{% endcomment %} | ||
|
||
{% assign pages_list = site.pages %} | ||
{% for node in pages_list %} | ||
{% if node.title != null %} | ||
{% if node.layout == "page" %} | ||
<a class="sidebar-nav-item{% if page.url == node.url %} active{% endif %}" href="{{ node.url }}">{{ node.title }}</a> | ||
{% endif %} | ||
{% endif %} | ||
{% endfor %} | ||
|
||
<a class="sidebar-nav-item" href="{{ site.github.repo }}/archive/v{{ site.version }}.zip">Download</a> | ||
<a class="sidebar-nav-item" href="{{ site.github.repo }}">GitHub project</a> | ||
<span class="sidebar-nav-item">Currently v{{ site.version }}</span> | ||
</nav> | ||
|
||
<p>© {{ site.time | date: '%Y' }}. All rights reserved.</p> | ||
</div> | ||
</div> |
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,15 @@ | ||
<!DOCTYPE html> | ||
<html lang="en-us"> | ||
|
||
{% include head.html %} | ||
|
||
<body> | ||
|
||
{% include sidebar.html %} | ||
|
||
<div class="content container"> | ||
{{ content }} | ||
</div> | ||
|
||
</body> | ||
</html> |
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,8 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<div class="page"> | ||
<h1 class="page-title">{{ page.title }}</h1> | ||
{{ content }} | ||
</div> |
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,25 @@ | ||
--- | ||
layout: default | ||
--- | ||
|
||
<div class="post"> | ||
<h1 class="post-title">{{ page.title }}</h1> | ||
<span class="post-date">{{ page.date | date_to_string }}</span> | ||
{{ content }} | ||
</div> | ||
|
||
<div class="related"> | ||
<h2>Related Posts</h2> | ||
<ul class="related-posts"> | ||
{% for post in site.related_posts limit:3 %} | ||
<li> | ||
<h3> | ||
<a href="{{ post.url }}"> | ||
{{ post.title }} | ||
<small>{{ post.date | date_to_string }}</small> | ||
</a> | ||
</h3> | ||
</li> | ||
{% endfor %} | ||
</ul> | ||
</div> |
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,12 @@ | ||
--- | ||
layout: post | ||
title: What's Jekyll? | ||
--- | ||
|
||
[Jekyll](http://jekyllrb.com) is a static site generator, an open-source tool for creating simple yet powerful websites of all shapes and sizes. From [the project's readme](https://github.com/mojombo/jekyll/blob/master/README.markdown): | ||
|
||
> Jekyll is a simple, blog aware, static site generator. It takes a template directory [...] and spits out a complete, static website suitable for serving with Apache or your favorite web server. This is also the engine behind GitHub Pages, which you can use to host your project’s page or blog right here from GitHub. | ||
It's an immensely useful tool and one we encourage you to use here with Hyde. | ||
|
||
Find out more by [visiting the project on GitHub](https://github.com/mojombo/jekyll). |
Oops, something went wrong.