Skip to content

Commit e1b0cfd

Browse files
committed
dbyl
1 parent fae11e1 commit e1b0cfd

File tree

113 files changed

+2797
-5995
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

113 files changed

+2797
-5995
lines changed

.gitignore

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
_site
2-
.sass-cache
3-
node_modules
4-
_drafts
1+
_config.yml
2+
_site/*
3+
*Thumbs.db
4+
Gemfile.lock

404.html

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,53 @@
1+
---
2+
layout: page
3+
permalink: 404.html
4+
---
5+
<!----------------------------------------------------------------
6+
_ _ _ _
7+
__| | |__ _ _| | | Ascii arts included in this page:
8+
/ _` | '_ \| | | | | | - R2D2, provided by: http://www.chris.com/
9+
| (_| | |_) | |_| | | | - Texts, generated from: http://www.network-science.de/ascii/
10+
\__,_|_.__/ \__, |_|_| http://github.com/dbtek/dbyll
11+
-------------|___/------------------------------------------------>
12+
13+
<style>
14+
pre {
15+
background: none;
16+
border: none;
17+
}
18+
</style>
19+
20+
<pre>
21+
22+
444444444 000000000 444444444
23+
4::::::::4 00:::::::::00 4::::::::4
24+
4:::::::::4 00:::::::::::::00 4:::::::::4
25+
4::::44::::4 0:::::::000:::::::0 4::::44::::4
26+
4::::4 4::::4 0::::::0 0::::::0 4::::4 4::::4
27+
4::::4 4::::4 0:::::0 0:::::0 4::::4 4::::4
28+
4::::4 4::::4 0:::::0 0:::::0 4::::4 4::::4
29+
4::::444444::::4440:::::0 000 0:::::04::::444444::::444
30+
4::::::::::::::::40:::::0 000 0:::::04::::::::::::::::4
31+
4444444444:::::4440:::::0 0:::::04444444444:::::444
32+
4::::4 0:::::0 0:::::0 4::::4
33+
4::::4 0::::::0 0::::::0 4::::4
34+
4::::4 0:::::::000:::::::0 4::::4
35+
44::::::44 00:::::::::::::00 44::::::44
36+
4::::::::4 00:::::::::00 4::::::::4
37+
4444444444 000000000 4444444444
38+
39+
,-----. _ _ _ _ _ _ _
40+
,'_/_|_\_`. | |_| |__ (_)___ ___| |__ ___ _ _| | __| | _ __ ___ | |_
41+
/<<::8[O]::>\ | __| '_ \| / __| / __| '_ \ / _ \| | | | |/ _` | | '_ \ / _ \| __|
42+
_|-----------|_ | |_| | | | \__ \ \__ \ | | | (_) | |_| | | (_| | | | | | (_) | |_
43+
:::| | ====-=- | |::: \__|_| |_|_|___/ |___/_| |_|\___/ \__,_|_|\__,_| |_| |_|\___/ \__|
44+
:::| | -=-==== | |:::
45+
:::\ | ::::|()|| /::: _
46+
::::| | ....|()|| |:::: | |__ __ _ _ __ _ __ ___ _ __ _____ _____ _ __
47+
| |_________| | | '_ \ / _` | '_ \| '_ \ / _ \ '_ \ / _ \ \ / / _ \ '__|
48+
| |\_______/| | | | | | (_| | |_) | |_) | __/ | | |_ | __/\ V / __/ |
49+
/ \ / \ / \ |_| |_|\__,_| .__/| .__/ \___|_| |_( ) \___| \_/ \___|_|
50+
`---' `---' `---' |_| |_| |/
51+
52+
53+
</pre>

Gemfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
source 'https://rubygems.org'
2+
gem 'jekyll'
3+
4+
group :jekyll_plugins do
5+
gem "jekyll-paginate"
6+
gem "pygments.rb"
7+
end
8+

LICENSE

Lines changed: 14 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016 Victor Igor <victor.0w3@gmail.com>
4-
http://victorvoid.github.io
3+
Copyright (c) 2013 İsmail Demirbilek
54

6-
Permission is hereby granted, free of charge, to any person obtaining a copy
7-
of this software and associated documentation files (the "Software"), to deal
8-
in the Software without restriction, including without limitation the rights
9-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10-
copies of the Software, and to permit persons to whom the Software is
11-
furnished to do so, subject to the following conditions:
5+
Permission is hereby granted, free of charge, to any person obtaining a copy of
6+
this software and associated documentation files (the "Software"), to deal in
7+
the Software without restriction, including without limitation the rights to
8+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
9+
the Software, and to permit persons to whom the Software is furnished to do so,
10+
subject to the following conditions:
1211

13-
The above copyright notice and this permission notice shall be included in
14-
all copies or substantial portions of the Software.
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
1514

1615
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22-
THE SOFTWARE.
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
17+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
18+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
19+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
20+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

Lines changed: 28 additions & 66 deletions
Original file line numberDiff line numberDiff line change
@@ -1,75 +1,37 @@
1-
# Space Jekyll
1+
dbyll
2+
=====
23

3-
A simple and elegant Jekyll theme based on Spacemacs. The theme works well on mobile devices as well.
4+
Open source stylish, minimalistic theme for jekyll.
5+
Demo: http://dbtek.github.io/dbyll/
46

5-
See a live demo [here](https://victorvoid.github.io/space-jekyll-template/).
7+
## New
8+
- Dbyll for Ghost is now available. Get it [here](https://github.com/dbtek/dbyll-ghost) now.
9+
- :new: Check out [Paper](https://github.com/dbtek/paper), new Material Design Jekyll theme.
610

7-
![](https://github.com/victorvoid/space-jekyll-template/blob/master/screenshot.png?raw=true)
11+
### Features
12+
- Responsive layout.
13+
- Supports tags and categories.
14+
- Social profile and bio of author.
15+
- Bootstrap based.
16+
- Glyphicon and Font-Awesome Icons.
17+
- Pagination.
18+
- Syntax highlighting with pygments.
19+
- Disqus comments.
20+
- :new: Custom sidebar background image.
821

9-
# Site/User Settings
1022

11-
customize your site in ``_config.yml``
23+
### Download
24+
* [Download dbyll](https://github.com/dbtek/dbyll/archive/master.zip)
1225

13-
```ruby
26+
### Install
27+
- You need to have [ruby](https://www.ruby-lang.org/en/documentation/installation/) installed in your system.
28+
- Install bundler which helps in specifying and installing dependencies of any Ruby project. ```gem install bundler```
29+
- Go to the root of the repo and run this - ```bundle install```
30+
- Then - ```bundle exec jekyll serve```
1431

15-
# Site settings
16-
description: A blog about lorem ipsum
17-
baseurl: "" # the subpath
18-
url: "" # the base hostname &/|| protocol for your site
32+
### Screenshots
33+
![dbyll-screenshot](assets/media/dbyll-ss.png)
1934

20-
# User settings
21-
username: Lorem Ipsum
22-
user_description: Lorem Developer
23-
user_title: Lorem Ipsum
24-
email: lorem@ipsum.com
25-
twitter_username: loremipsum
26-
github_username: loremipsum
27-
gplus_username: loremipsum
28-
disqus_username: loremipsum
35+
### License
36+
- [MIT](http://opensource.org/licenses/MIT)
2937

30-
```
31-
32-
See more about project and links in [_config.yml](./_config.yml)
33-
34-
## How to create a post ?
35-
36-
_posts create a file .md with structure:
37-
38-
```md
39-
---
40-
layout: post
41-
title: "Lorem ipsum speak.."
42-
date: 2016-09-13 01:00:00
43-
image: '/assets/img/post-image.png'
44-
description: 'about tech'
45-
tags:
46-
- lorem
47-
- tech
48-
categories:
49-
- Lorem ipsum
50-
twitter_text: 'How to speak with Lorem'
51-
---
52-
```
53-
54-
## License
55-
The MIT License (MIT)
56-
57-
Copyright (c) 2016 Victor Igor
58-
59-
Permission is hereby granted, free of charge, to any person obtaining a copy
60-
of this software and associated documentation files (the "Software"), to deal
61-
in the Software without restriction, including without limitation the rights
62-
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
63-
copies of the Software, and to permit persons to whom the Software is
64-
furnished to do so, subject to the following conditions:
65-
66-
The above copyright notice and this permission notice shall be included in all
67-
copies or substantial portions of the Software.
68-
69-
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
70-
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
71-
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
72-
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
73-
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
74-
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
75-
SOFTWARE.

_config.yml

Lines changed: 35 additions & 46 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,40 @@
1-
# Site settings
2-
title: Lorem Ipsum - Web Developer
3-
description: "A blog about lorem ipsum ..."
4-
baseurl: "/space-jekyll-template" # for test: remove string '/space-jekyll-template' to ''
5-
url: "http://victorvoid.github.io/space-jekyll-template/" # for test: remove string 'http://victorvoid.github.io' to '' but in production: 'https://yourusername.githu.io'
6-
# User settings
7-
username: lorem ipsum
8-
user_title: Lorem Ipsum - FrontEnd
9-
email: lorem.lorem@ipsum.com
10-
twitter_username: loremipsum
11-
github_username: loremipsum
12-
gplus_username: loremipsum
13-
linkedin_public_url: loremipsum # Example: For public profile 'www.linkedin.com/in/john-smith', 'john-smith' is your linkedin_public_url
14-
disqus_username: loremipsum
15-
profile_picture: https://68.media.tumblr.com/93f384858e9273d5b980b418e2f2f4d5/tumblr_o5i2aybLJG1uapsfmo2_250.png
1+
# visit https://github.com/mojombo/jekyll/wiki/Configuration for more settings
162

17-
# Build settings
18-
markdown: kramdown
3+
paginate: 10 # pagination based on number of posts
4+
paginate_path: "page:num"
5+
exclude: ["README.md"] # files to exclude
196
highlighter: rouge
20-
permalink: /:title/
7+
markdown: kramdown
8+
disqus: dbyll
9+
google_analytics: dbyll
10+
title: dbyll
11+
12+
defaults:
13+
-
14+
scope:
15+
path: "" # empty string for all files
16+
values:
17+
title: dbyll
18+
19+
description: Stylish Jekyll Theme
20+
author:
21+
name: dbyll
22+
email: dbyll@ismaildemirbilek.com
23+
github: dbtek
24+
twitter: dbtek
25+
pinterest: asd123
26+
linkedin: asd123
27+
bio: Your stylish, minimalist theme!
28+
email_md5: 726351295ec82e145928582f595aa3aa
29+
30+
rss_path: feed.xml
31+
categories_path: categories.html
32+
tags_path: tags.html
2133

34+
# set it as url of an image
35+
# sidebar_background_image: https://www.dropbox.com/s/g9h23zrycedxtk5/sky.png?raw=1
2236

23-
# html minify
24-
compress_html:
25-
clippings: all
26-
comments: all
27-
endings: []
28-
profile: false
37+
BASE_PATH:
2938

30-
# Links to include in menu navigation
31-
links:
32-
- title: home
33-
url: /
34-
- title: my posts
35-
url: /posts
36-
- title: series
37-
url: /series
38-
- title: tags
39-
url: /tags
40-
- title: about me
41-
url: /about
42-
# projects in header index
43-
projects:
44-
- name: asciilang
45-
url: https://github.com/victorvoid/asciilang
46-
- name: vim-frontend
47-
url: https://github.com/victorvoid/vim-frontend
48-
- name: generator-capybara
49-
url: https://github.com/victorvoid/generator-capybara
50-
# exclude my node related stuff
51-
exclude: ['package.json', 'src', 'node_modules']
39+
gems:
40+
- jekyll-paginate

_includes/comments.html

Lines changed: 0 additions & 30 deletions
This file was deleted.

0 commit comments

Comments
 (0)