All Projects → nybles → Adam

nybles / Adam

Licence: mit
Jeykll theme created for nybles

Projects that are alternatives of or similar to Adam

Wtfjht
Logging the daily shock and awe in national politics. Read in moderation.
Stars: ✭ 386 (+2170.59%)
Mutual labels:  blog, newsletter
Book next
wechat docs organized with the new makefile
Stars: ✭ 115 (+576.47%)
Mutual labels:  blog, technology
Swiftweekly.github.io
A community-driven weekly newsletter about Swift.org
Stars: ✭ 305 (+1694.12%)
Mutual labels:  blog, newsletter
Blog
🎯 个人博客
Stars: ✭ 394 (+2217.65%)
Mutual labels:  blog, technology
Mercyblitz.github.io
小马哥的技术博客 :D
Stars: ✭ 443 (+2505.88%)
Mutual labels:  blog, technology
Androidnote
🔥 Android 进阶笔记,包含常用的技术框架、博客社区、书籍等。
Stars: ✭ 614 (+3511.76%)
Mutual labels:  blog, technology
Weekly
A seleção semanal que reúne as novidades sobre o desenvolvimento Web no Brasil e no mundo
Stars: ✭ 545 (+3105.88%)
Mutual labels:  technology, newsletter
This Week In Rust
Data for this-week-in-rust.org
Stars: ✭ 675 (+3870.59%)
Mutual labels:  blog, newsletter
Wblog
基于gin+gorm开发的个人博客项目
Stars: ✭ 763 (+4388.24%)
Mutual labels:  blog
Blog
前端基础,深入以及算法数据结构记录
Stars: ✭ 800 (+4605.88%)
Mutual labels:  blog
Izone
django+bootstrap4 个人博客
Stars: ✭ 757 (+4352.94%)
Mutual labels:  blog
Artsy.github.io
The Artsy Engineering Open-Source Developers Blog
Stars: ✭ 770 (+4429.41%)
Mutual labels:  blog
Leonids
A simple, fixed sidebar two columns Gatsby.js blog starter.
Stars: ✭ 813 (+4682.35%)
Mutual labels:  blog
Newblog
个人博客,个人网站,blog
Stars: ✭ 763 (+4388.24%)
Mutual labels:  blog
Nodepress
😎 RESTful API service for Blog/CMS, powered by @nestjs
Stars: ✭ 829 (+4776.47%)
Mutual labels:  blog
Gatsby Starter Minimal Blog
Typography driven, feature-rich blogging theme with minimal aesthetics. Includes tags/categories support and extensive features for code blocks such as live preview, line numbers, and line highlighting.
Stars: ✭ 752 (+4323.53%)
Mutual labels:  blog
Bloghelper
帮助国内用户写作的托盘助手,一键发布本地文章到主流博客平台(知乎、简书、博客园、CSDN、SegmentFault、掘金、开源中国),剪贴板图片一键上传至图床(新浪、Github、图壳、腾讯云、阿里云、又拍云、七牛云)
Stars: ✭ 749 (+4305.88%)
Mutual labels:  blog
Flyapi
基于SSM layui 开发的多人博客系统,目标在于让每个人都能精准阅读和专注写作。
Stars: ✭ 16 (-5.88%)
Mutual labels:  blog
Bludit
Simple, Fast, Secure, Flat-File CMS
Stars: ✭ 824 (+4747.06%)
Mutual labels:  blog
Hexo Theme Nexmoe
🔥 一个比较特别的 Hexo 主题
Stars: ✭ 789 (+4541.18%)
Mutual labels:  blog

Nybles is the Tech newletter for IIIT-Allahabad.

Join the chat at https://gitter.im/nyblenews/Lobby We invite posts from everyone.

Post layout

---
layout: Post
title: Add your title
author: Author name
categories: Only three categories are now : future, trending and campus
intro: Will be shown in the main page if specified
---

content should be added here,No need to add title name again.

Adding Images in Post

All images in post are loaded when they appear on screen.So images should be added in the following way:

<img class="lazy" src="" data-original="" alt="">

src and data-originals should have same path or link to image.
alt includes title of image as text.

Scripts

if you want to fetch another persons pull request and edit,then

./fetch_pull_request <pull-request-id> <remote value = upstream by default>

Layout

Here's the clue for hackers:

  • The posts are in the _posts directory.

  • The site data is available in _data directory.

    • The links in navbar / sidebar can be edited from _data/urls.json.
    • The social links for the blog owner can be provided from _data/social.json.
    • The list of events are available at, and can be modified from _data/events.json.
  • The _config.yml is the configuration file for the entire blog. Handle with care!

Original fork*

Git/Github Tutorials

Git: Introduction

Github: Introduction

Merge Commits

Squash Commits

##Installation - I want to see this running live on my computer.

Prerequisites

Mac OSX/Linux

Jekyll is built with jekyll which comes as a ruby gem. So you need to install Ruby to get started.

RVM make it easy to install and manage different versions of Ruby. Install Ruby using RVM by running the following commands

~ $ gpg --keyserver hkp://keys.gnupg.net --recv-keys 409B6B1796C275462A1703113804BB82D39DC0E3

~ $ \curl -sSL https://get.rvm.io | bash -s stable --ruby

This installs RVM with the latest stable version of Ruby

Ubuntu users: You may need to enable Run command as a login shell in Ubuntu's Terminal, under Edit > Profile Preferences > Title and Command. Then close the terminal and reopen it. You may also want to run source ~/.rvm/scripts/rvm to load RVM.

To install ruby gems from a Gemfile you would need bundler which by default comes with RVM ruby but if isn't present you would need to install it using the command gem install bundler.

Windows

If on Windows, you can follow this guide on how to install jekyll.

Deployment

After you have installed Ruby and cloned the repository deploy the application running the following commands

# Enter the app directory


# Install gems using bundler
~$ bundle install

# Build site starting jekyll server
~$ bundle exec jekyll serve

You are ready to go! Browse to http://localhost:4000

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