-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from faizal3199/master
Major change in UI and added functionalities
- Loading branch information
Showing
116 changed files
with
4,980 additions
and
12,541 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,2 @@ | ||
.sass-cache | ||
_site |
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
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,22 @@ | ||
Copyright (c) 2013-2017 Ghost Foundation - Released under The MIT License. | ||
|
||
Permission is hereby granted, free of charge, to any person | ||
obtaining a copy of this software and associated documentation | ||
files (the "Software"), to deal in the Software without | ||
restriction, including without limitation the rights to use, | ||
copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the | ||
Software is furnished to do so, subject to the following | ||
conditions: | ||
|
||
The above copyright notice and this permission notice shall be | ||
included in all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, | ||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES | ||
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND | ||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT | ||
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, | ||
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING | ||
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
OTHER DEALINGS IN THE SOFTWARE. |
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,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2018 Fábio Madeira | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
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,47 @@ | ||
## Adding new posts | ||
* Create a new file under \_posts folder. Name it according to `YYYY-MM-DD-name-of-post.md` | ||
* Paste following content in the created file(Change relevant field) | ||
``` | ||
--- | ||
layout: post | ||
current: post | ||
cover: False # Use URL here if you want to add any image as cover | ||
navigation: True | ||
title: POST-TITLE-HERE | ||
date: YYYY-MM-DD HH:MM:SS | ||
tags: ['POST-TAG-1','POST-TAG-2'] | ||
class: post-template | ||
subclass: 'post tag' | ||
author: 'AUTHOR-USERNAME' | ||
--- | ||
``` | ||
* Happy bloging | ||
* If adding new tag or author in a post. Check relevant instructions | ||
|
||
## Adding new tag | ||
* Create a new file under \_tag by name `tag-name.html` | ||
* Paste following content in the created file(Change relevant field) | ||
``` | ||
--- | ||
layout: tag | ||
current: tag | ||
tagname: tag-name-here # Must be only alphanum and hypen. Same as used in new file | ||
class: page-template | ||
subclass: 'post page' | ||
--- | ||
``` | ||
* Fillup new tag's information in \_data/tags.yml file. Use template-tag for the same | ||
|
||
## Adding new author | ||
* Create a new file under \_author by name `author-username.html` | ||
* Paste following content in the created file(Change relevant field) | ||
``` | ||
--- | ||
layout: author | ||
current: author | ||
author: AUTHOR-USERNAME-HERE #Must be only alphanum and hypen. Same as used in new file | ||
class: page-template | ||
subclass: 'post page' | ||
--- | ||
``` | ||
* Fillup new tag's information in \_data/authors.yml file. Use template-author for the same |
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,95 @@ | ||
# Jekyll configuration | ||
markdown: kramdown | ||
highlighter: rouge | ||
paginate: 10 # it will paginate after this number | ||
paginate_path: "/blog/page:num/" | ||
language: 'en-uk' | ||
|
||
# edit baseurl to simply '/' if using as your personal page (instead of a project page) | ||
url: "https://infoseciitr.github.io/" #Value gets overwritten at time of deployment by jekyll in CNAME file used | ||
baseurl: "/l33t/../" # This value is replaced to empty string by github if set to '/' | ||
|
||
# Website info | ||
title: InfosecIITR | ||
description: The official website of InfosecIITR | ||
# cover: /assets/images/infosec.jpeg | ||
logo: /assets/images/infosec.jpeg | ||
logo_dark: /assets/images/small-logo.jpg | ||
favicon: /assets/images/small-logo.jpg | ||
production_url: https://jekyller.github.io/jasper2/ | ||
source_url: https://github.com/jekyller/jasper2/ | ||
|
||
# Social info | ||
navigation: True # show the navbar links | ||
subscribers: False # you need to connect an external service for this to work, | ||
# if 'True' the submit button is disabled for now, but you can change that | ||
# by editing `_includes/subscribe-form.html` | ||
twitter: infoseciitr # replace by your username | ||
facebook: InfoSecIITR # replace by your username | ||
|
||
# Disqus | ||
disqus: False | ||
disqus_shortname: # replace with your disqus username | ||
|
||
# Google Analytics | ||
google_analytics: # replace with your GA tracking identifier | ||
|
||
# Permalinks | ||
# permalink: /:title | ||
# permalink: /author/:author | ||
# permalink: /tag/:tag | ||
|
||
# Authors' info in `_data/authors.yml` | ||
# Tags' info in `_data/tags_info.yml` | ||
|
||
# gems and other configs | ||
plugins: [jekyll-paginate, jekyll-feed, jekyll-sitemap] | ||
|
||
feed: | ||
path: feed.xml | ||
|
||
# Additional settings available on the front-matter | ||
# Site logo in the index.html (as in demo.ghost.io) | ||
# Author's page cover in _layouts/author.html | ||
# The same for page.html and tag.html layouts | ||
# Post's page cover as a per-post basis _posts/... | ||
# Disqus comments as a per-post basis | ||
# ... | ||
|
||
# Settings for builing master branch with travis-ci | ||
# with jekyll-travis | ||
|
||
# Settings for deploy rake task | ||
# Username and repo of Github repo, e.g. | ||
# https://github.com/USERNAME/REPO.git | ||
# username defaults to ENV['GIT_NAME'] used by Travis | ||
# repo defaults to USERNAME.github.io | ||
# Branch defaults to "source" for USERNAME.github.io | ||
# or "master" otherwise | ||
# safe: False | ||
# lsi: False | ||
# username: jekyller | ||
# repo: jasper2 | ||
# branch: master | ||
# relative_source: ../jasper2/ | ||
# destination: ../jasper2-pages/ | ||
# production_url: https://jekyller.github.io/jasper2/ | ||
# source_url: https://github.com/jekyller/jasper2/ | ||
|
||
# exclude: | ||
# - assets/css | ||
# - node_modules | ||
# - vendor | ||
# - .travis.yml | ||
# - Gemfile | ||
# - Gemfile.lock | ||
# - GHOST.txt | ||
# - gulpfile.js | ||
# - LICENSE | ||
# - package.json | ||
# - Rakefile | ||
# - README.md | ||
# - script.py | ||
# - changelog.md | ||
# - "*.Rmd" | ||
# - .git* |
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,23 @@ | ||
template-author: | ||
username: template-author # same as above | ||
name: AUTHOR NAME | ||
location: False # Roorkee, IN | ||
url_full: False #http://example.com | ||
url: False #example.com | ||
bio: False # My bio | ||
picture: False #assets/images/authors/xyz.jpg | ||
facebook: False #user.name | ||
twitter: False # handel | ||
cover: False #assets/images/authors/xyz-cover.jpg | ||
|
||
InfoSecIITR: | ||
username: InfoSecIITR # same as above | ||
name: InfoSecIITR Team | ||
location: False # Roorkee, IN | ||
url_full: https://infoseciitr.github.io | ||
url: False #example.com | ||
bio: Team of InfoSecIITR | ||
picture: /assets/images/authors/infoseciitr.png | ||
facebook: InfoSecIITR | ||
twitter: infoseciitr | ||
cover: False #/assets/images/authors/infoseciitr-cover.png |
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,13 @@ | ||
template-tag: | ||
name: Display name here | ||
description: Tag description | ||
cover: False # url to cover if any image | ||
|
||
reading-material: | ||
name: Reading Material | ||
description: Posts regarding reading material | ||
cover: False | ||
beginner: | ||
name: Beginner | ||
description: Beginner related posts | ||
cover: "/assets/images/tags/beginner-cover.jpeg" |
Oops, something went wrong.