All Projects → aligoren → Aligoren.github.io

aligoren / Aligoren.github.io

Licence: other
My blog =>

Projects that are alternatives of or similar to Aligoren.github.io

kitian616.github.io
My personal site, Powered by Jekyll & TeXt Theme.
Stars: ✭ 25 (+212.5%)
Mutual labels:  jekyll, jekyll-site
Plainwhite Jekyll
A configurable portfolio-style jekyll theme for writers.
Stars: ✭ 308 (+3750%)
Mutual labels:  jekyll, jekyll-site
startbootstrap-stylish-portfolio-jekyll
Jekyll theme based on Stylish Portfolio Bootstrap theme
Stars: ✭ 20 (+150%)
Mutual labels:  jekyll, jekyll-site
online-resume
A Jekyll theme for resume / cv based on Markdown. Demo: https://tarrex.github.io/online-resume
Stars: ✭ 27 (+237.5%)
Mutual labels:  jekyll, jekyll-site
Mundana Theme Jekyll
Mundana is a free Jekyll theme, Medium styled.
Stars: ✭ 402 (+4925%)
Mutual labels:  jekyll, jekyll-site
jekyll-skeleton
Scaffolding to start with a Jekyll website
Stars: ✭ 27 (+237.5%)
Mutual labels:  jekyll, jekyll-site
event-jekyll-theme
Jekyll Theme package for your event
Stars: ✭ 119 (+1387.5%)
Mutual labels:  jekyll, jekyll-site
White Paper
Simple, elegant and clean jekyll theme.
Stars: ✭ 195 (+2337.5%)
Mutual labels:  jekyll, jekyll-site
Trucsclub.github.io
TRU CS Club Website
Stars: ✭ 6 (-25%)
Mutual labels:  jekyll, jekyll-site
Liberxue.github.io
Liberxue blog for lightweight Jekyll themes 轻量级自适应 简洁 卡片式博客主题 3秒搞定GitHub blog
Stars: ✭ 330 (+4025%)
Mutual labels:  jekyll, jekyll-site
Mediumish Theme Jekyll
Jekyll Template - Mediumish
Stars: ✭ 786 (+9725%)
Mutual labels:  jekyll, jekyll-site
Lagrange
A minimalist Jekyll theme for running a personal blog
Stars: ✭ 454 (+5575%)
Mutual labels:  jekyll, jekyll-site
Millennial
A minimalist Jekyll theme for running an online publication
Stars: ✭ 223 (+2687.5%)
Mutual labels:  jekyll, jekyll-site
jekyll-deploy-action
🪂 A Github Action to deploy the Jekyll site conveniently for GitHub Pages.
Stars: ✭ 162 (+1925%)
Mutual labels:  jekyll, jekyll-site
Good Clean Read
A Jekyll template for publishing clean, readable articles and single-page sites
Stars: ✭ 204 (+2450%)
Mutual labels:  jekyll, jekyll-site
mr-brown
Mr.Brown is a responsive Jekyll theme
Stars: ✭ 21 (+162.5%)
Mutual labels:  jekyll, jekyll-site
Wu Kan.github.io
✨ my homepage & template for jekyll-theme-WuK
Stars: ✭ 171 (+2037.5%)
Mutual labels:  jekyll, jekyll-site
Jekyll Theme Massively
Preview
Stars: ✭ 187 (+2237.5%)
Mutual labels:  jekyll, jekyll-site
Jekyll Klise
🏖 Klisé is a minimalist Jekyll theme for running a personal site or blog, light & dark mode support. (https://klise.now.sh)
Stars: ✭ 312 (+3800%)
Mutual labels:  jekyll, jekyll-site
Photography
A free online portfolio website to showcase your photos.
Stars: ✭ 420 (+5150%)
Mutual labels:  jekyll, jekyll-site

Lanyon

Lanyon is an unassuming Jekyll theme that places content first by tucking away navigation in a hidden drawer. It's based on Poole, the Jekyll butler.

Lanyon Lanyon with open sidebar

Contents

Usage

Lanyon is a theme built on top of Poole, which provides a fully furnished Jekyll setup—just download and start the Jekyll server. See the Poole usage guidelines for how to install and use Jekyll.

Options

Lanyon 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.

---
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.

Themes

Lanyon ships with eight optional themes based on the base16 color scheme. Apply a theme to change the color scheme (mostly applies to sidebar and links).

Lanyon with red theme Lanyon with red theme and open sidebar

There are eight themes available at this time.

Available theme classes

To use a theme, add any one of the available theme classes to the <body> element in the default.html layout, like so:

<body class="theme-base-08">
  ...
</body>

To create your own theme, look to the Themes section of included CSS file. Copy any existing theme (they're only a few lines of CSS), rename it, and change the provided colors.

Reverse layout

Lanyon with reverse layout Lanyon with reverse layout and open sidebar

Reverse the page orientation with a single class.

<body class="layout-reverse">
  ...
</body>

Sidebar overlay instead of push

Make the sidebar overlap the viewport content with a single class:

<body class="sidebar-overlay">
  ...
</body>

This will keep the content stationary and slide in the sidebar over the side content. It also adds a box-shadow based outline to the toggle for contrast against backgrounds, as well as a box-shadow on the sidebar for depth.

It's also available for a reversed layout when you add both classes:

<body class="layout-reverse sidebar-overlay">
  ...
</body>

Sidebar open on page load

Show an open sidebar on page load by modifying the <input> tag within the sidebar.html layout to add the checked boolean attribute:

<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox" checked>

Using Liquid you can also conditionally show the sidebar open on a per-page basis. For example, here's how you could have it open on the homepage only:

<input type="checkbox" class="sidebar-checkbox" id="sidebar-checkbox" {% if page.title =="Home" %}checked{% endif %}>

Development

Lanyon has two branches, but only one is used for active development.

  • master for development. All pull requests should be to submitted against master.
  • gh-pages for our hosted site, which includes our analytics tracking code. Please avoid using this branch.

Author

Mark Otto

License

Open sourced under the MIT license.

<3

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].