Giter VIP home page Giter VIP logo

HANUMAN Jekyll Theme

Build Status

Hanuman is a minimal yet powerful Jekyll theme for your blogs and websites.

It is built using the open source AMP Start framework and can be customized as per your requirements.

Buy Me A Coffee

Live Demo

Hanuman

Features

  • Minimal
  • Responsive
  • Syntax Highlighting for code
  • Cover Images for homepage and blog posts
  • Social Sharing
  • Simple Navigation Menu
  • Pagination
  • Google Analytics
  • Can be easily installed via "theme gem"
  • Github Pages support
  • Easily Customisable
  • Tags
  • Multiple Authors

What is AMP

AMP stands for Accelerated Mobile Pages, a Google-backed project designed as an open standard for any publisher to have pages load quickly on mobile devices.

Installation

There are different ways to install the theme -

1. Cloning the repository and updating settings

  1. Fork this repository and clone the forked repository.
  2. Update the _config.yml file as per your requirements.
  3. Add your posts to the _posts directory.
  4. Deploy to Github Pages or your own server.

Deploying to Github Pages

Method 1

Push the contents of the destination folder (mentioned in _config.yml. eg - destination: ../hanuman-pages/) to the gh-pages branch(if project page) or master branch(if user page) of your repository.

Method 2

  • Set up travis-ci for your fork.
  • Generate your secure token with the travis gem: Run gem install travis on your terminal.
  • Grab the GH_TOKEN from https://github.com/settings/tokens
  • Then run travis encrypt 'GIT_NAME="YOUR_USERNAME" GIT_EMAIL="YOUR_EMAIL" GH_TOKEN=YOUR_TOKEN'
  • Add the token to your .travis.yml file. Now you just need to push the files. Travis will generate the HTML files and automatically push them to your gh-pages branch. This is the setup I am using.

2. Ruby Gem Method

Add this line to your Jekyll site's Gemfile:

gem "hanuman"

And add this line to your Jekyll site's _config.yml:

theme: hanuman

And then execute:

$ bundle

Or install it yourself as:

$ gem install hanuman

You'll also need to copy or create the _config.yml file just like in this repository. Similarly, you'll need to have a navigation.yml and author.yml in your _data directory.

Deploying to Github Pages

Run bundle exec jekyll serve inside your cloned repository. Push the contents of the resulting _site to your Github Pages repository.

3. Jekyll Remote Theme

  1. Create or update your Gemfile with the following -
source "https://rubygems.org"
gem "github-pages", group: :jekyll_plugins
gem "jekyll-remote-theme"
  1. Update the bundled gems using bundle command.

  2. Add remote_theme: "hanuman" to your _config.yml.

  3. Add jekyll-remote-theme to the plugins array of your _config.yml -

plugins:
  - jekyll-remote-theme

Usage

_config.yml

Update _config.yml with your respective settings like updating your site's name, description etc...

Styling

AMP has a limitation that you can only use inline css. All the CSS for this theme is in the styles.scss file in the includes directory.

Changing the Default Color

In the styles.scss file in the includes directory, you can change the hex value of $theme-color to the color you would like your site to use.

Author Information

Author information is present in the author.yml file in the _data folder. You can update the fields of that file as per your requirements.

Sidenav

Sidenav can be updated from the navigation.yml file in the _data folder.

Writing Posts

You can write posts just as you would in Jekyll, the only difference being that AMP has some strict guidelines on including external content.

You cannot use Markdown format or normal HTML tags. AMP provides its own custom tags for images, videos etc...

Examples -

Images <amp-img src="welcome.jpg" alt="Welcome" height="400" width="800"></amp-img>

Videos <amp-youtube data-videoid="mGENRKrdoGY" layout="responsive" width="480" height="270"></amp-youtube>

See Full AMP Documentation.

Using AMP Components

Some AMP components require you to specify external scripts before using them. You can specify these scripts in the head.html file in the includes directory after the already imported scripts and then use these components in any post.

Validating your page with AMP

AMP provides built-in validator to validate your pages so that they can rendered quickly.

You can access this validator by opening the Developer Console in your browser and adding #development=1 to any url of your site.

Example - http://localhost:4000/#development=1

If you have errors on your page, AMP will list those for you in the console. If you do not have any errors, you'll get a message "AMP Validation Successful" on your console.

Enabling Google Analytics

  1. Set up your Analytics Tracking ID in _config.yml.
  2. Remove {% comment %} and {% endcomment %} tags in the default.html file in layouts directory.

Contributing

Bug reports and pull requests are welcome on GitHub at https://github.com/samanyougarg/hanuman. This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

To submit a pull request -

  1. Fork/clone the repository.
  2. Develop.
  3. Create a new branch from the master branch.
  4. Open a pull request on Github describing what was fixed or added.

Thanks

Hanuman is based on amplify jekyll theme. Thank You.

License

The theme is available as open source under the terms of the MIT License.

odoiys's Projects

ctf icon ctf

用于编写每个ctf的wp

ctf-1 icon ctf-1

持续更新,CTF题目收集+如何入门CTF

ctf-wiki icon ctf-wiki

CTF Wiki Online. Come and join us, we need you!

ctfwp icon ctfwp

一本专门收集Writeup的book

goscan icon goscan

GoScan是采用Golang语言编写的一款分布式综合资产管理系统,适合红队、SRC等使用

new-pac icon new-pac

科学/自由上网,免费ss/ssr/v2ray/goflyway账号,搭建教程

odoiys.github icon odoiys.github

A responsive, lightning-fast Jekyll theme built using AMP (Accelerated Mobile Pages) to speed up your blogs and websites.

poc-exp icon poc-exp

漏洞研究,中间件/OA/CMS/路由器/...

pocorexp_in_github icon pocorexp_in_github

聚合Github上已有的Poc或者Exp,CVE信息来自CVE官网。Auto Collect Poc Or Exp from Github by CVE ID.

protectors icon protectors

🛡️ Obfuscator, Encryption, Junkcode, Anti-Debug, PE protection/modification

rsactftool icon rsactftool

RSA attack tool (mainly for ctf) - retreive private key from weak public key and/or uncipher data

sheller icon sheller

一键加壳/脱壳,混淆,花指令,反调试等

viper icon viper

metasploit-framework with webui / metasploit-framework 图形界面

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.