Skip to content

Commit 19c6132

Browse files
committed
Implemented Jekyll
1 parent 55bdb67 commit 19c6132

17 files changed

+1771
-83
lines changed

.gitignore

+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
1-
_site/
2-
.sass-cache/
3-
.jekyll-cache/
1+
_site
2+
.sass-cache
3+
.jekyll-cache
44
.jekyll-metadata
5+
vendor

.idea/.gitignore

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/codeStyles/codeStyleConfig.xml

+5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/inspectionProfiles/Project_Default.xml

+1,093
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/jsLibraryMappings.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/misc.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/modules.xml

+8
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

.idea/vcs.xml

+6
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

404.html

+28
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
permalink: /404.html
3+
layout: default
4+
links:
5+
Home: index
6+
---
7+
8+
<style type="text/css" media="screen">
9+
.container {
10+
margin: 10px auto;
11+
max-width: 600px;
12+
text-align: center;
13+
}
14+
h1 {
15+
margin: 30px 0;
16+
font-size: 4em;
17+
line-height: 1;
18+
letter-spacing: -1px;
19+
}
20+
</style>
21+
22+
<div class="container">
23+
<h1>404</h1>
24+
25+
<p><strong>Page not found :(</strong></p>
26+
<p>The requested page could not be found.</p>
27+
<p>You might return to <a href="index">home</a></p>
28+
</div>

Gemfile

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# frozen_string_literal: true
2+
3+
source 'https://rubygems.org'
4+
# Hello! This is where you manage which Jekyll version is used to run.
5+
# When you want to use a different version, change it below, save the
6+
# file and run `bundle install`. Run Jekyll with `bundle exec`, like so:
7+
#
8+
# bundle exec jekyll serve
9+
#
10+
# This will help ensure the proper Jekyll version is running.
11+
# Happy Jekylling!
12+
gem 'jekyll', '~> 4.2.0'
13+
# This is the default theme for new Jekyll sites. You may change this to anything you like.
14+
gem 'minima', '~> 2.5'
15+
# If you want to use GitHub Pages, remove the "gem "jekyll"" above and
16+
# uncomment the line below. To upgrade, run `bundle update github-pages`.
17+
# gem "github-pages", group: :jekyll_plugins
18+
# If you have any plugins, put them here!
19+
group :jekyll_plugins do
20+
gem 'jekyll-feed', '~> 0.12'
21+
end
22+
23+
# Windows and JRuby does not include zoneinfo files, so bundle the tzinfo-data gem
24+
# and associated library.
25+
platforms :mingw, :x64_mingw, :mswin, :jruby do
26+
gem 'tzinfo', '~> 1.2'
27+
gem 'tzinfo-data'
28+
end
29+
30+
# Performance-booster for watching directories on Windows
31+
gem 'wdm', '~> 0.1.1', platforms: %i[mingw x64_mingw mswin]
32+
33+
gem 'webrick', '~> 1.7'

Gemfile.lock

+88
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,88 @@
1+
GEM
2+
remote: https://rubygems.org/
3+
specs:
4+
addressable (2.7.0)
5+
public_suffix (>= 2.0.2, < 5.0)
6+
colorator (1.1.0)
7+
concurrent-ruby (1.1.9)
8+
em-websocket (0.5.2)
9+
eventmachine (>= 0.12.9)
10+
http_parser.rb (~> 0.6.0)
11+
eventmachine (1.2.7-x64-mingw32)
12+
ffi (1.15.1-x64-mingw32)
13+
forwardable-extended (2.6.0)
14+
http_parser.rb (0.6.0)
15+
i18n (1.8.10)
16+
concurrent-ruby (~> 1.0)
17+
jekyll (4.2.0)
18+
addressable (~> 2.4)
19+
colorator (~> 1.0)
20+
em-websocket (~> 0.5)
21+
i18n (~> 1.0)
22+
jekyll-sass-converter (~> 2.0)
23+
jekyll-watch (~> 2.0)
24+
kramdown (~> 2.3)
25+
kramdown-parser-gfm (~> 1.0)
26+
liquid (~> 4.0)
27+
mercenary (~> 0.4.0)
28+
pathutil (~> 0.9)
29+
rouge (~> 3.0)
30+
safe_yaml (~> 1.0)
31+
terminal-table (~> 2.0)
32+
jekyll-feed (0.15.1)
33+
jekyll (>= 3.7, < 5.0)
34+
jekyll-sass-converter (2.1.0)
35+
sassc (> 2.0.1, < 3.0)
36+
jekyll-seo-tag (2.7.1)
37+
jekyll (>= 3.8, < 5.0)
38+
jekyll-watch (2.2.1)
39+
listen (~> 3.0)
40+
kramdown (2.3.1)
41+
rexml
42+
kramdown-parser-gfm (1.1.0)
43+
kramdown (~> 2.0)
44+
liquid (4.0.3)
45+
listen (3.5.1)
46+
rb-fsevent (~> 0.10, >= 0.10.3)
47+
rb-inotify (~> 0.9, >= 0.9.10)
48+
mercenary (0.4.0)
49+
minima (2.5.1)
50+
jekyll (>= 3.5, < 5.0)
51+
jekyll-feed (~> 0.9)
52+
jekyll-seo-tag (~> 2.1)
53+
pathutil (0.16.2)
54+
forwardable-extended (~> 2.6)
55+
public_suffix (4.0.6)
56+
rb-fsevent (0.11.0)
57+
rb-inotify (0.10.1)
58+
ffi (~> 1.0)
59+
rexml (3.2.5)
60+
rouge (3.26.0)
61+
safe_yaml (1.0.5)
62+
sassc (2.4.0-x64-mingw32)
63+
ffi (~> 1.9)
64+
terminal-table (2.0.0)
65+
unicode-display_width (~> 1.1, >= 1.1.1)
66+
thread_safe (0.3.6)
67+
tzinfo (1.2.9)
68+
thread_safe (~> 0.1)
69+
tzinfo-data (1.2021.1)
70+
tzinfo (>= 1.0.0)
71+
unicode-display_width (1.7.0)
72+
wdm (0.1.1)
73+
webrick (1.7.0)
74+
75+
PLATFORMS
76+
x64-mingw32
77+
78+
DEPENDENCIES
79+
jekyll (~> 4.2.0)
80+
jekyll-feed (~> 0.12)
81+
minima (~> 2.5)
82+
tzinfo (~> 1.2)
83+
tzinfo-data
84+
wdm (~> 0.1.1)
85+
webrick (~> 1.7)
86+
87+
BUNDLED WITH
88+
2.2.19

_config.yml

+22-9
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,28 @@
1-
theme: jekyll-theme-slate
2-
title: Jamplate
3-
description: C-Style moderen pre-processor
41

5-
author: LSafer
6-
organization-name: Cufy
7-
organization-link: cufy.org
2+
title: Jamplate
3+
email: jamplate@cufy.org
4+
description: >- # this means to ignore newlines until "baseurl:"
5+
Jamplate is a C-Style pre-processor. Although it is a C-Style, this does not mean it is
6+
following the C standard. This pre-processor has almost the same expected behaviour as a
7+
standard C pre-processors with some features added and some missing.
88
9-
footer_content: Copyrights 2020-2021 Cufy
9+
baseurl: "" # the subpath of your site, e.g. /blog
10+
url: "" # the base hostname & protocol for your site, e.g. http://example.com
11+
github_username: Jamplate
1012

11-
gh_edit_link: false
13+
markdown: kramdown
1214

15+
defaults:
16+
- scope:
17+
path: ""
18+
values:
19+
favicon: '/assets/logo/cufy.ico'
20+
title: 'Jamplate'
1321

1422
github:
15-
is_project_page: false
23+
owner_name: Cufy
24+
owner_url: https://cufy.org
25+
26+
emails:
27+
cmail: jamplate@cufy.org
28+
gmail: cufyorg@gmail.com

0 commit comments

Comments
 (0)