├── LICENSE
├── README.md
├── _config.yml
├── _data
└── projects.yml
├── _includes
├── foot.html
├── head.html
├── imprint.html
└── projects.html
├── _layouts
└── default.html
├── _posts
├── 2016-09-26-welcome.md
└── 2016-11-06-test.md
├── assets
├── css
│ ├── gridism.css
│ ├── ionicons.css
│ └── main.css
└── fonts
│ ├── ionicons.eot
│ ├── ionicons.svg
│ ├── ionicons.ttf
│ ├── ionicons.woff
│ ├── pf.ttf
│ ├── pfsc.ttf
│ └── st.ttf
├── atom.xml
├── feed.xml
├── images
└── favicon.png
├── index.html
├── robots.txt
└── sitemap.xml
/LICENSE:
--------------------------------------------------------------------------------
1 | MIT License
2 |
3 | Copyright (c) 2016 Lukas Himsel
4 |
5 | Permission is hereby granted, free of charge, to any person obtaining a copy
6 | of this software and associated documentation files (the "Software"), to deal
7 | in the Software without restriction, including without limitation the rights
8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9 | copies of the Software, and to permit persons to whom the Software is
10 | furnished to do so, subject to the following conditions:
11 |
12 | The above copyright notice and this permission notice shall be included in all
13 | copies or substantial portions of the Software.
14 |
15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21 | SOFTWARE.
22 |
--------------------------------------------------------------------------------
/README.md:
--------------------------------------------------------------------------------
1 | # onepage
2 | uncomplicated single-page jekyll blog theme
3 |
4 | ## find a demo here [HERE](https://lukas-h.github.io/onepage/)
5 |
6 | ## use it in 4 easy steps
7 |
8 | #### 1. fork this repository and rename it
9 |
10 | #### 2. create a branch called `gh-pages`
11 |
12 | #### 3. edit the `_config.yml` file
13 |
14 | 3.1. paste your `title` and `description`
15 |
16 | 3.2. give your site's url with protocol (http or https) to the variable `url`
17 |
18 | 3.3. the part after your page domain, for example you have `http://lukas-h.github.io/onepage`, `baseurl: "/onepage"` is the right value
19 |
20 | 3.4. paste **github** and **twitter** username to the following variables. Important: **without** @ prefix
21 |
22 | 3.5. `accent` is the color code for the blog column
23 |
24 | 3.6. edit address and name, email too.
25 |
26 | 3.7. you are using google analytics? paste your ID to `g_analytics: ""`
27 |
28 | 3.8. edit html content language here: `isolang: en`, default is english
29 |
30 | #### 4. start writing posts
31 |
32 | 4.1 posts are in the directory `_posts`
33 |
34 | 4.2 see here an introduction: http://jekyllrb.com/docs/posts/
35 |
36 | # thank you
37 | share this project, give a star, contributions welcome
38 | [](https://opensource.org/licenses/MIT)
39 |
--------------------------------------------------------------------------------
/_config.yml:
--------------------------------------------------------------------------------
1 | safe: false
2 |
3 | # build settings
4 | markdown: kramdown
5 | highlighter: rouge
6 | lsi: false
7 | permalink: /:title
8 |
9 | title: "Your Name"
10 | description: "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam"
11 | baseurl: "/onepage"
12 | url: "https://lukas-h.github.io" # replace by your site's url
13 | twitter_username: your-name
14 | github_username: lukas-h # (your name)
15 | accent: "#f7f7e6" # accent color for blog column
16 |
17 | author: "Your Name"
18 | address: "Your Street,
Your City, Country"
19 | email: "your@email.com"
20 |
21 | # google analytics tracking code, please change the value
22 | g_analytics: ""
23 |
24 | # language settings
25 | isolang: en
26 |
27 | # exclude files
28 | exclude:
29 | - LICENSE
30 | - README.md
31 |
--------------------------------------------------------------------------------
/_data/projects.yml:
--------------------------------------------------------------------------------
1 | - name: project 1
2 | link: "#"
3 | description: "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam"
4 | - name: project 2
5 | link: "#"
6 | description: "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam"
7 | - name: project 3
8 | link: "#"
9 | description: "Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam"
10 |
--------------------------------------------------------------------------------
/_includes/foot.html:
--------------------------------------------------------------------------------
1 |
2 |
--------------------------------------------------------------------------------
/_includes/head.html:
--------------------------------------------------------------------------------
1 |
{{ site.address }}
Address
{{ site.email }}
Email
Google Analytics
Disclaimer
{{ project.name }}
{{ project.description }}