All Projects → android10 → Android10.github.io

android10 / Android10.github.io

Licence: mit
Jekyll project for blog: fernandocejas.com.

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

Will Jekyll Template
A simple Jekyll theme.
Stars: ✭ 360 (+2300%)
Mutual labels:  blog, jekyll, jekyll-theme, jekyll-template
Lagrange
A minimalist Jekyll theme for running a personal blog
Stars: ✭ 454 (+2926.67%)
Mutual labels:  blog, jekyll, jekyll-theme, jekyll-template
Jekyll Theme Yat
🎨 Yet another theme for elegant writers with modern flat style and beautiful night/dark mode.
Stars: ✭ 113 (+653.33%)
Mutual labels:  blog, jekyll, jekyll-theme, website
Long Haul
A minimal, type-focused Jekyll theme.
Stars: ✭ 524 (+3393.33%)
Mutual labels:  blog, jekyll, jekyll-theme, jekyll-template
Millennial
A minimalist Jekyll theme for running an online publication
Stars: ✭ 223 (+1386.67%)
Mutual labels:  blog, jekyll, jekyll-theme, jekyll-template
Jekyll Theme Chirpy
A minimal, sidebar, responsive web design Jekyll theme that focuses on text presentation.
Stars: ✭ 773 (+5053.33%)
Mutual labels:  jekyll, jekyll-theme, jekyll-template
Beautiful Jekyll
✨ Build a beautiful and simple website in literally minutes. Demo at https://beautifuljekyll.com
Stars: ✭ 3,778 (+25086.67%)
Mutual labels:  blog, jekyll, jekyll-theme
Liberxue.github.io
Liberxue blog for lightweight Jekyll themes 轻量级自适应 简洁 卡片式博客主题 3秒搞定GitHub blog
Stars: ✭ 330 (+2100%)
Mutual labels:  blog, jekyll, jekyll-theme
Jekyll Theme Prologue
A Jekyll version of the "Prologue" theme by HTML5 UP
Stars: ✭ 346 (+2206.67%)
Mutual labels:  blog, jekyll, jekyll-theme
Sidey
Sidey is a simple and minimalistic jekyll blogging theme.
Stars: ✭ 274 (+1726.67%)
Mutual labels:  blog, jekyll, jekyll-theme
Aviator Jekyll Template
💧 API Documentation template for Jekyll
Stars: ✭ 337 (+2146.67%)
Mutual labels:  jekyll, jekyll-theme, jekyll-template
Mundana Theme Jekyll
Mundana is a free Jekyll theme, Medium styled.
Stars: ✭ 402 (+2580%)
Mutual labels:  jekyll, jekyll-theme, jekyll-template
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 (+1980%)
Mutual labels:  blog, jekyll, jekyll-theme
Cards Jekyll Template
A simple Jekyll Template Card Based.
Stars: ✭ 306 (+1940%)
Mutual labels:  blog, jekyll, jekyll-theme
Mediumish Theme Jekyll
Jekyll Template - Mediumish
Stars: ✭ 786 (+5140%)
Mutual labels:  jekyll, jekyll-theme, jekyll-template
Hydra Jekyll Template
🐉 Product marketing template for Jekyll
Stars: ✭ 298 (+1886.67%)
Mutual labels:  jekyll, jekyll-theme, jekyll-template
Reverie
🎨 A ridiculously elegant Jekyll theme.
Stars: ✭ 442 (+2846.67%)
Mutual labels:  blog, jekyll, jekyll-theme
Jalpc
🍎Jalpc -- A flexible Jekyll theme, 3 steps to build your website.
Stars: ✭ 859 (+5626.67%)
Mutual labels:  blog, jekyll, jekyll-theme
Edition Jekyll Template
📚 Product documentation template for Jekyll
Stars: ✭ 261 (+1640%)
Mutual labels:  jekyll, jekyll-theme, jekyll-template
Base Jekyll Template
📘 Knowledge base template for Jekyll
Stars: ✭ 272 (+1713.33%)
Mutual labels:  jekyll, jekyll-theme, jekyll-template

Jekyll Blog Project

This is a jekyll project for my personal blog:

This website is built with Jekyll. It uses a fork of a template called Mediumish which was customized for the purpose of this blog. It is fully compatible with Github pages, where it is actually hosted.

blog_screenshot

What is Jekyll?

No more databases, comment moderation, or pesky updates to install-just your content. Markdown, Liquid, HTML & CSS go in. Static sites come out ready for deployment. Permalinks, categories, pages, posts, and custom layouts are all first-class citizens here.

GitHub Pages are powered by Jekyll, so you can easily deploy your site using GitHub for free-custom domain name and all. Jekyll is a simple, blog-aware, static site generator.

You create your content as text files (Markdown), and organize them into folders. Then, you build the shell of your site using Liquid-enhanced HTML templates. Jekyll automatically stitches the content and templates together, generating a website made entirely of static assets, suitable for uploading to any server.

Jekyll happens to be the engine behind GitHub Pages, so you can host your project’s Jekyll page/blog/website on GitHub’s servers for free. {: .text-justify}

Quick Start Guide

If you already have a full Ruby development environment (go to the Bundler section on this page for more information) with all headers and RubyGems installed (see Jekyll’s requirements), you can create a new Jekyll site by doing the following: {: .text-justify}

# Install Jekyll and Bundler gems through RubyGems
gem install jekyll bundler

# Create a new Jekyll site at ./myblog
jekyll new myblog

# Change into your new directory
cd myblog

# Build the site on the preview server
bundle exec jekyll serve

# Now browse to http://localhost:4000

Options for creating a new site with Jekyll

jekyll new <PATH> installs a new Jekyll site at the path specified (relative to current directory). In this case, Jekyll will be installed in a directory called myblog. Here are some additional details: {: .text-justify}

  • To install the Jekyll site into the directory you're currently in, run jekyll new . If the existing directory isn't empty, you can pass the --force option with jekyll new . --force.
  • jekyll new automatically initiates bundle install to install the dependencies required. (If you don't want Bundler to install the gems, use jekyll new myblog --skip-bundle.)
  • By default, the Jekyll site installed by jekyll new uses a gem-based theme called Minima. With gem-based themes, some of the directories and files are stored in the theme-gem, hidden from your immediate view.
  • We recommend setting up Jekyll with a gem-based theme but if you want to start with a blank slate, use jekyll new myblog --blank
  • To learn about other parameters you can include with jekyll new, type jekyll new --help.

About Bundler

gem install bundler installs the bundler gem through RubyGems. You only need to install it once - not every time you create a new Jekyll project. Here are some additional details: {: .text-justify}

bundler is a gem that manages other Ruby gems. It makes sure your gems and gem versions are compatible, and that you have all necessary dependencies each gem requires. {: .text-justify}

The Gemfile and Gemfile.lock files inform Bundler about the gem requirements in your site. If your site doesn’t have these Gemfiles, you can omit bundle exec and just run jekyll serve. {: .text-justify}

When you run bundle exec jekyll serve, Bundler uses the gems and versions as specified in Gemfile.lock to ensure your Jekyll site builds with no compatibility or dependency conflicts. {: .text-justify}

For more information about how to use Bundler in your Jekyll project, this tutorial should provide answers to the most common questions and explain how to get up and running quickly. {: .text-justify}

Features of this template

  • Built for Jekyll
  • Compatible with Github pages
  • Featured Posts
  • Index Pagination
  • Post Share
  • Post Categories
  • Prev/Next Link
  • Category Archives (this is not yet compatible with github pages though)
  • Jumbotron Categories
  • Integrations:
    • Disqus Comments
    • Google Analaytics
    • Mailchimp Integration
  • Design Features:
    • Bootstrap v4.x
    • Font Awesome
    • Masonry
  • Layouts:
    • Default
    • Post
    • Page
    • Archive

How to Use it

As said above, Jekyll is a static site generator. It will transform your plain text into static websites and blogs. No more databases, slow loading websites, risk of being hacked...just your content. And not only that, with Jekyll you get free hosting with GitHub Pages! If you are a beginner I recommend you start with Jekyll's Docs{:target="_blank"}. Now if you know how to use Jekyll, let's move on to using this template in Jekyll: {: .text-justify}

Using this template

Download or Fork it: https://github.com/android10/android10.github.io.

  • In your local project, open _config.yml. If your site is in root, for baseurl, make sure this is set to baseurl: "". Also, change your Google Analytics code, disqus username, authors, Mailchimp list etc.
  • This site requires 2 plugins:
    • $ gem install jekyll-paginate
    • $ gem install jekyll-archives.
  • Edit the menu and footer copyrights in default.html
  • Start by adding your .md files in _posts.
  • YAML front matter
    • featured post - featured:true
    • exclude featured post from "All stories" loop to avoid duplicated posts - hidden:true
    • post image - image: assets/images/mypic.jpg
    • page comments - comments:true
    • meta description (optional) - description: "this is my meta description"

YAML Post Example:

---
layout: post
title:  "Architecting Android... Reloaded"
author: fernando
categories: [ android, development, mobile, engineering ]
image: assets/images/architecting_android_reloaded.jpg
featured: true
comments: true
---

YAML Page Example

---
layout: page
title: About Myself
comments: false
---

Contribute

Feel free to contribute either by requesting features or collaborating with new articles.

  • Clone the repo.
  • Create a branch off of master and give it a meaningful name (e.g. my-new-feature).
  • Open a pull request on GitHub and describe the feature, fix or post.

Useful links

Useful commands for building this site

  • bundle install: Install all the dependencies.
  • bundle update: Updates all dependencies.
  • jekyll clean: Clean up the project.
  • jekyll build: Build and generate all the static files for the website.
  • bundle exec jekyll serve: Starts a local server to test the website.

License

Copyright 2018 Fernando Cejas

Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.

http://www.fernandocejas.com

Invite Me A Coffee

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