4 | Redirecting
5 |
6 |
7 |
8 |
9 |
10 |
11 |
--------------------------------------------------------------------------------
/CNAME:
--------------------------------------------------------------------------------
1 | jekyllcodex.org
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # Jekyll Codex
2 |
3 | A website for front-end developers who want to learn Jekyll. https://jekyllcodex.org
4 |
5 | Jekyll Codex is created by Joost van der Schee ([@jhvanderschee](https://twitter.com/jhvanderschee) or joost@vdschee.nl) to make it easier for fellow front-end developers to choose static web technology in their next project. The getting started guide even shows how to do that without touching the command-line. You can also watch [JekyllCodex at JekyllConf 2019](https://vimeo.com/361839295) which shows exactly that in under twenty minutes. Note that this video uses the [jQuery and Twitter Bootstrap version](https://fresh-butterfly.cloudvent.net) of this website. If you want to know more about Jekyll, please visit the official Jekyll documentation. The link can be found in the menu at the top.
6 |
7 | Why Jekyll? Jekyll is the most popular static site generator. Static sites are better for performance, they’re cheaper to build and maintain, and they’re much more secure than traditional database driven websites. Thus they offer a great added value to front-end developers and their clients.
8 |
9 | ## Copyrights
10 |
11 | Feel free to use all code presented on this website under the MIT License (see below). The code of the website itself may also be used, as this website is a demo of the code it presents. However, respect the copyright of the used trademarks and the licenses of the open-source software used, as their rights belong to their respective owners. All images are CC0 images from Unsplash.
12 |
13 | ### MIT License
14 |
15 | Copyright (c) 2020 Usecue BV
16 |
17 | Permission is hereby granted, free of charge, to any person obtaining a copy
18 | of this software and associated documentation files (the "Software"), to deal
19 | in the Software without restriction, including without limitation the rights
20 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
21 | copies of the Software, and to permit persons to whom the Software is
22 | furnished to do so, subject to the following conditions:
23 |
24 | The above copyright notice and this permission notice shall be included in all
25 | copies or substantial portions of the Software.
26 |
27 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
28 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
29 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
30 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
31 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
32 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
33 | SOFTWARE.
34 |
--------------------------------------------------------------------------------
/Thumbs.db:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/jhvanderschee/jekyllcodex/cbbeb9839028d2c32da07722acf3c8b9371dc120/Thumbs.db
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | ---
2 | title: Jekyll Codex
3 | timezone: UTC
4 | collections:
5 | posts:
6 | title: Posts
7 | output: true
8 | products:
9 | title: Products
10 | output: true
11 | permalink: "/donate/:path/"
12 | uploads:
13 | title: Uploads
14 | output: false
15 | without-plugin:
16 | title: Without Plugin
17 | output: true
18 | permalink: "/without-plugin/:path/"
19 | defaults:
20 | - scope:
21 | path: ''
22 | type: pages
23 | values:
24 | layout: page
25 | - scope:
26 | path: ''
27 | type: posts
28 | values:
29 | layout: post
30 | - scope:
31 | path: ''
32 | type: without-plugin
33 | values:
34 | layout: without-plugin-item
35 | - scope:
36 | path: ''
37 | type: products
38 | values:
39 | layout: product
40 | description: Jekyll Codex wants to make it easier for front-end developers to choose
41 | Jekyll in their next project.
42 | url: https://jekyllcodex.org
43 | permalink: "/blog/:title/"
44 | facebook_url: https://www.facebook.com/jhvanderschee
45 | twitter_url: https://twitter.com/jhvanderschee
46 | linkedin_url: https://www.linkedin.com/in/joost-van-der-schee-4b26682
47 | pinterest_url:
48 | instagram_url:
49 | highlighter: rouge
50 | markdown: kramdown
51 | kramdown:
52 | syntax_highlighter_opts:
53 | disable: true
54 | input_types:
55 | - text
56 | - textarea
57 | - email
58 | - date
59 | - checkbox
60 | - radio
61 | - number
62 | - submit
63 | form_engines:
64 | - cloudcannon
65 | - formspree
66 | - formbucket
67 |
--------------------------------------------------------------------------------
/_data/buttonmodal.yaml:
--------------------------------------------------------------------------------
1 | title: Are you sure you want to donate?
2 | text: We have got plenty of donations. We would love you to help us do something else...
3 | items:
4 | - title: First other thing
5 | url: https://www.usecue.com
6 | - title: Second other thing
7 | url: https://jekyllcodex.org
8 | - title: Third other thing
9 | url: https://www.google.com
--------------------------------------------------------------------------------
/_includes/accordion.html:
--------------------------------------------------------------------------------
1 |
12 |