beautifulSA-jekyll/README.md

289 lines
26 KiB
Markdown
Raw Normal View History

2015-03-03 03:06:23 +01:00
# Beautiful Jekyll
2015-03-03 00:06:54 +01:00
2020-04-19 11:02:05 +02:00
![Beautiful Jekyll CI](https://github.com/daattali/beautiful-jekyll/workflows/Beautiful%20Jekyll%20CI/badge.svg)
2016-12-07 09:00:21 +01:00
[![Gem Version](https://badge.fury.io/rb/beautiful-jekyll-theme.svg)](https://badge.fury.io/rb/beautiful-jekyll-theme)
2016-12-07 07:02:00 +01:00
2020-04-26 09:00:09 +02:00
> *Copyright 2020 [Dean Attali](https://deanattali.com)*
2020-04-27 00:58:06 +02:00
**Beautiful Jekyll** is a ready-to-use template to help you create an awesome website quickly. Perfect for personal sites, blogs, or simple project websites. [Check out a demo](https://deanattali.com/beautiful-jekyll) of what you'll get after just two minutes. You can also look at [my personal website](https://deanattali.com) to see it in use, or see examples of websites other people created using this theme [below](#showcased-users-success-stories).
2015-03-03 03:06:23 +01:00
2020-04-26 09:00:09 +02:00
**If you enjoy this theme, please consider [supporting me](http://paypal.me/daattali) or [sponsoring me](https://github.com/sponsors/daattali) for developing and maintaining it for over 5 years.**
2016-03-28 05:46:48 +02:00
2016-12-14 23:48:23 +01:00
<p align="center">
2020-04-27 00:57:06 +02:00
<a style="display: inline-block;" href="https://paypal.me/daattali">
<img height="40" src="https://camo.githubusercontent.com/0e9e5cac101f7093336b4589c380ab5dcfdcbab0/68747470733a2f2f63646e2e6a7364656c6976722e6e65742f67682f74776f6c66736f6e2f70617970616c2d6769746875622d627574746f6e40312e302e302f646973742f627574746f6e2e737667" />
2020-04-27 01:05:58 +02:00
</a>&nbsp;&nbsp;
2020-04-27 01:05:24 +02:00
<a style="display: inline-block;" href="https://github.com/sponsors/daattali">
2020-04-27 00:57:06 +02:00
<img height="40" src="https://i.imgur.com/034B8vq.png" />
2016-12-14 23:48:23 +01:00
</a>
</p>
2015-09-06 03:58:31 +02:00
### Table of contents
- [Build your website in 3 steps](#build-your-website-in-3-steps)
- [Add your own content](#add-your-own-content)
2020-04-27 03:21:06 +02:00
- [Last important thing: parameters for each page](#last-important-thing-parameters-for-each-page)
2016-10-11 02:58:30 +02:00
- [Features](#features)
2020-04-27 03:17:38 +02:00
- [Supported YAML front matter parameters](#supported-yaml-front-matter-parameters)
2016-10-11 02:58:30 +02:00
- [Showcased users (success stories!)](#showcased-users-success-stories)
2020-04-27 03:17:38 +02:00
- [Advanced: Using `remote_theme`](#advanced-using-remote_theme)
2018-04-01 07:05:34 +02:00
- [FAQ and support](#faq-and-support)
2016-10-11 02:58:30 +02:00
- [Credits and contributions](#credits)
2015-09-06 03:58:31 +02:00
2015-03-03 07:09:31 +01:00
## Build your website in 3 steps
Getting started is *literally* as easy as 1-2-3 :smile:
2015-03-03 09:14:46 +01:00
2020-04-27 02:03:27 +02:00
Scroll down to see the steps involved, but here is a 40-second video just as a reference as you work through the steps. If you don't already have a [GitHub account](https://github.com/join), you'll need to sign up.
2020-04-26 09:10:19 +02:00
2020-04-27 02:03:27 +02:00
![Installation steps](assets/img/install-steps.gif)
2020-04-26 09:10:19 +02:00
### 1. Fork this project
2015-03-03 07:09:31 +01:00
2020-04-26 09:10:19 +02:00
Fork this project by clicking the __*Fork*__ button at the top right corner of this page. Forking means that you now copied this entire project and all the files into your account.
2015-03-03 07:09:31 +01:00
2020-04-26 09:10:19 +02:00
### 2. Rename the project to `<yourusername>.github.io`
2015-03-03 07:09:31 +01:00
Click on __*Settings*__ at the top (the cog icon) and on that page you'll have an option to rename the project (*repository name*). This will create a website with the **Beautiful Jekyll** template that will be available at `https://<yourusername>.github.io` within a couple minutes. Check out the [FAQ](#faq-and-support) if you want to use a different project name.
### 3. Customize your website settings
2015-03-03 07:09:31 +01:00
2020-04-27 02:13:01 +02:00
Edit the `_config.yml` file to change any settings you want. To edit the file, click on it to view the file and then click on the pencil icon to edit it (watch the video tutorial above if you're confused). The settings in the file are self-explanatory and I added comments inside the file to help you understand what each setting does. Any line that begins with a hashtag (`#`) is a comment, and the other lines are actual settings.
2015-03-03 07:09:31 +01:00
2020-04-27 03:17:38 +02:00
### 4. Congratulations! You have a website!
2020-04-27 02:13:01 +02:00
After you save your changes to the config file (by clicking on *Commit changes* as the video tutorial shows), your website should be ready in a minute or two at `https://<yourusername>.github.io`. Every time you make a change to any file, your website will get rebuilt and should be updated in about a minute or so. Your website will be initialized with several sample blog posts and a couple other pages.
2015-03-03 07:09:31 +01:00
2020-04-27 02:13:01 +02:00
Note that in the video above I only edited one setting in the `_config.yml` file. **You should actually go through the rest of the settings as well. Don't be lazy, go through all the settings :)**
2015-03-03 07:09:31 +01:00
2020-04-27 02:13:01 +02:00
---
2015-03-03 09:14:46 +01:00
2016-10-11 02:58:30 +02:00
## Add your own content
2015-03-03 07:09:31 +01:00
2020-04-27 03:17:38 +02:00
To add pages to your site, you can either write a markdown file (`.md`) or you can write an HTML file directly. It's much easier to write markdown than HTML, so I suggest you do that (use [this great tutorial](https://markdowntutorial.com/) if you need to learn markdown in 5 minutes). You can look at some files on this site to get an idea of how to write markdown. To look at existing files, click on any file that ends in `.md`, for example [`aboutme.md`](./aboutme.md). On the next page you can see some nicely formatted text (there's a word in bold, a link, a few bullet points), and if you click on the pencil icon to edit the file, you'll see the markdown that generated the pretty text. Very easy!
2020-04-27 03:17:38 +02:00
In contrast, look at [`tags.html`](./tags.html). That's how your write HTML - not as pretty. So stick with markdown if you don't know HTML.
2020-04-27 03:17:38 +02:00
Files you create inside the [`_posts`](./_posts) directory will be treated as blog entries. You can look at the existing files there to get an idea of how to write blog posts. Note the format of the blog post files - they must follow the naming convention of `YEAR-MONTH-DAY-title.md`. After you successfully add your own post, you can delete the existing files inside [`_posts`](./_posts) to remove the sample posts, as those are just demo posts to help you learn.
2015-03-03 07:09:31 +01:00
2020-04-27 03:17:38 +02:00
## Last important thing: parameters for each page
2015-03-03 07:09:31 +01:00
2020-04-27 03:17:38 +02:00
In order to have your new pages use this template and not just be plain HTML pages, **you must add [YAML front matter](https://jekyllrb.com/docs/front-matter/) to the top of each page**. This is where you'll be able to give each page some extra parameters such as a title, a subtitle, or an image. [Below is a list of all available parameters](#supported-yaml-front-matter-parameters). If you don't want to use any parameters on a page (this also means having no title), then use the empty YAML front matter:
2015-03-03 08:29:07 +01:00
```
---
---
```
2020-04-27 03:17:38 +02:00
If you do want to use any parameters, write them between these two lines. For example, you can have this at the top of a page:
2015-03-03 08:29:07 +01:00
2015-03-11 04:57:31 +01:00
```
---
title: Contact me
subtitle: Here you'll find all the ways to get in touch with me
---
```
2020-04-27 03:17:38 +02:00
You can look at the top of [`aboutme.md`](https://raw.githubusercontent.com/daattali/beautiful-jekyll/master/aboutme.md) as an example.
2015-03-11 04:57:31 +01:00
2020-04-27 03:17:38 +02:00
**Important takeaway: ALWAYS add the YAML front matter, which is two lines with three dashes, to EVERY page. If you have any parameters, they go between the two lines.**
If you don't include YAML then your file will not use this template.
2015-03-03 09:36:56 +01:00
2016-10-11 02:58:30 +02:00
## Features
2015-03-03 08:29:07 +01:00
2016-10-11 02:58:30 +02:00
### Mobile-first
2016-03-28 06:38:04 +02:00
**Beautiful Jekyll** is designed to look great on both large-screen and small-screen (mobile) devices. Load up your site on your phone or your gigantic iMac, and the site will work well on both, though it will look slightly different.
2015-03-03 08:29:07 +01:00
2020-04-27 04:54:57 +02:00
### Highly customizable
2015-03-03 08:29:07 +01:00
2017-09-04 21:52:47 +02:00
Many personalization settings in `_config.yml`, such as setting your name and site's description, changing the background colour/image, setting your avatar to add a little image in the navigation bar, customizing the links in the menus, customizing what social media links to show in the footer, etc.
2016-10-11 02:58:30 +02:00
### Allowing users to leave comments
If you want to enable comments on your site, Beautiful Jekyll supports several different commenting platforms you can choose from: [Disqus](https://disqus.com/), [Facebook](https://developers.facebook.com/docs/plugins/comments), [Utterances](https://utteranc.es/), and [Staticman](https://staticman.net). If any of these are set in the configuration file, then all blog posts will have comments turned on by default. To turn off comments on a particular blog post, add `comments: false` to the YAML front matter. If you want to add comments on the bottom of a non-blog page, add `comments: true` to the YAML front matter.
#### Disqus comments
To use Disqus, simply sign up to [Disqus](https://disqus.com/) and add your Disqus shortname to the `disqus` parameter in the `_config.yml` file.
#### Facebook comments
To use Facebook comments, create a Facebook app using [Facebook developers](https://developers.facebook.com/docs/apps/register), and add the Facebook App ID to the `fb_comment_id` parameter in `_config.yml`.
2020-04-01 23:25:11 +02:00
#### Utterances comments
To use [Utterances comments](https://utteranc.es/), follow these steps: (1) Enable Issues in your GitHub repository, (2) Install the Utterances app in your repository (go to https://github.com/apps/utterances), (3) Fill in the `repository` parameter in the utterances section of the `_config.yml` file.
#### Staticman comments
To use Staticman, you first need to invite `staticmanlab` as a collaborator to your repository (by going to your repository **Settings** page, navigate to the **Collaborators** tab, and add the username `staticmanlab`), and then accept the invitation by going to `https://staticman3.herokuapp.com/v3/connect/github/<username>/<repo-name>`. Lastly, fill in the `staticman` parameters in the Staticman section of `_config.yml`. You may also choose a different Staticman instance other than `staticmanlab`.
2019-07-29 21:08:49 +02:00
Optional: You may want to configure a webhook to prevent old inactive branches (representing approved comments) from stacking up. You can refer to [Staticman's documentation](https://staticman.net/docs/webhooks) for details. Make sure to input the **Payload URL** according to your chosen `endpoint`. For example, the default `endpoint` is `https://staticman3.herokuapp.com/v3/entry/github/`, so the corresponding **Payload URL** should be `https://staticman3.herokuapp.com/v1/webhook`.
2019-06-26 05:20:19 +02:00
2020-04-01 23:25:11 +02:00
2016-10-11 02:58:30 +02:00
### Adding Google Analytics to track page views
2018-10-11 18:01:58 +02:00
Beautiful Jekyll lets you easily add Google Analytics to all your pages. This will let you track all sorts of information about visits to your website, such as how many times each page is viewed and where (geographically) your users come from. To add Google Analytics, simply sign up to [Google Analytics](https://www.google.com/analytics/) to obtain your Google Tracking ID, and add this tracking ID to the `google_analytics` parameter in `_config.yml`.
2016-10-11 02:58:30 +02:00
### Sharing blog posts on social media
2016-08-07 02:00:33 +02:00
By default, all blog posts will have buttons at the bottom of the post to allow people to share the current page on Twitter/Facebook/LinkedIn. You can choose to enable/disable specific social media websites in the `_config.yml` file. You can also turn off the social media buttons on specific blog posts using `social-share: false` in the YAML front matter.
2015-03-03 08:29:07 +01:00
2016-10-11 02:58:30 +02:00
### Page types
2015-03-03 08:29:07 +01:00
2016-03-28 06:38:04 +02:00
- **post** - To write a blog post, add a markdown or HTML file in the `_posts` folder. As long as you give it YAML front matter (the two lines of three dashes), it will automatically be rendered like a blog post. Look at the existing blog post files to see examples of how to use YAML parameters in blog posts.
- **page** - Any page outside the `_posts` folder that uses YAML front matter will have a very similar style to blog posts.
2020-04-26 09:23:36 +02:00
- **home** - The home layout is meant to act as the homepage of your blog posts - it will display all your blog posts, sorted from newest to oldest. A file using the `home` layout must be named `index.html` (not `index.md` or anything else!).
2016-03-28 06:38:04 +02:00
- **minimal** - If you want to create a page with minimal styling (ie. without the bulky navigation bar and footer), assign `layout: minimal` to the YAML front matter.
- If you want to completely bypass the template engine and just write your own HTML page, simply omit the YAML front matter. Only do this if you know how to write HTML!
2015-03-03 08:29:07 +01:00
2020-04-27 03:17:38 +02:00
## Supported YAML front matter parameters
2015-03-03 07:09:31 +01:00
These are the main parameters you can place inside a page's YAML front matter that **Beautiful Jekyll** supports.
2015-03-03 09:00:57 +01:00
2015-03-03 10:03:01 +01:00
Parameter | Description
----------- | -----------
title | Page or blog post title
2016-03-28 06:38:04 +02:00
subtitle | Short description of page or blog post that goes under the title
2018-01-19 06:06:48 +01:00
tags | List of tags to categorize the post. Separate the tags with commas and place them inside square brackets. Example: `[personal, self help, finance]`
2018-10-11 18:01:58 +02:00
bigimg | Include a large full-width image at the top of the page. You can either give the path to a single image, or provide a list of images to cycle through (see [my personal website](https://deanattali.com/) as an example).
comments | If you want do add comments to a specific page, use `comments: true`. Comments are automatically enabled on blog posts; to turn comments off for a specific post, use `comments: false`. Comments only work if you enable at least one provider(Facebook, disqus, staticman) in `_config.yml` file.
2016-03-18 12:41:06 +01:00
show-avatar | If you have an avatar configured in the `_config.yml` but you want to turn it off on a specific page, use `show-avatar: false`. If you want to turn it off by default, locate the line `show-avatar: true` in the file `_config.yml` and change the `true` to `false`; then you can selectively turn it on in specific pages using `show-avatar: true`.
2016-12-24 23:50:08 +01:00
image | If you want to add a personalized image to your blog post that will show up next to the post's excerpt and on the post itself, use `image: /path/to/img`.
2020-04-24 16:58:50 +02:00
readtime | If you want to show how many minutes it will take to read a post in the header, add `readtime: true`.
share-img | If you want to specify an image to use when sharing the page on Facebook or Twitter, then provide the image's full URL here.
social-share | If you don't want to show buttons to share a blog post on social media, use `social-share: false` (this feature is turned on by default).
2017-01-06 09:37:02 +01:00
use-site-title | If you want to use the site title rather than page title as HTML document title (ie. browser tab title), use `use-site-title: true`. When set, the document title will take the format `Site Title - Site Description` (eg. `My website - A virtual proof that name is awesome!`). By default, it will use `Page Title` if it exists, or `Site Title` otherwise.
2020-04-22 23:59:23 +02:00
language | HTML language code to be set on &lt;html&gt; element (see [W3Schools website](https://www.w3schools.com/tags/ref_language_codes.asp) for more info on this topic). Language can also be set site-wide in `_config.yml`.
2020-04-26 09:23:36 +02:00
layout | What type of page this is (default is `post` for blog posts and `page` for other pages. You can use `minimal` if you don't want a header and footer). The `index.html` file should use the `home` layout to show all the blog posts.
2020-04-27 00:15:10 +02:00
gh-repo   | If you want to show GitHub buttons at the top of a post, this sets the GitHub repo name (eg. `daattali/beautiful-jekyll`). You must also use the `gh-badge` parameter to specify what buttons to show.
gh-badge | Select which GitHub buttons to display. Available options are: [star, watch, fork, follow]. You must also use the `gh-repo` parameter to specify the GitHub repo.
js | List of local JavaScript files to include in the page (eg. `/assets/js/mypage.js`)
ext-js | List of external JavaScript files to include in the page (eg. `//cdnjs.cloudflare.com/ajax/libs/underscore.js/1.8.2/underscore-min.js`). External JavaScript files that support [Subresource Integrity (SRI)](https://developer.mozilla.org/en-US/docs/Web/Security/Subresource_Integrity) can be specified using the `href` and `sri` parameters eg.<br/>`href: "//code.jquery.com/jquery-3.1.1.min.js"`<br/>`sri: "sha256-hVVnYaiADRTO2PzUGmuLJr8BLUSjGIZsDYGmIJLv2b8="`
2015-03-03 10:03:01 +01:00
css | List of local CSS files to include in the page
ext-css | List of external CSS files to include in the page. External CSS files using SRI (see `ext-js` parameter) are also supported.
2015-03-03 10:03:01 +01:00
googlefonts | List of Google fonts to include in the page (eg. `["Monoton", "Lobster"]`)
2015-03-03 03:06:23 +01:00
### Advanced features (including how to use a custom URL address for your site)
2015-03-03 00:06:54 +01:00
2018-10-11 18:01:58 +02:00
I wrote [a blog post](https://deanattali.com/2015/03/12/beautiful-jekyll-how-to-build-a-site-in-minutes/) describing some more advanced features that I used in my website that are applicable to any Jekyll site. It describes how I used a custom URL for my site (deanattali.com instead of daattali.github.io), how to add a Google-powered search into your site, and provides a few more details about having an RSS feed.
2015-03-03 08:29:07 +01:00
2016-10-11 02:58:30 +02:00
## Showcased users (success stories!)
2015-09-06 03:48:37 +02:00
2020-04-27 00:57:06 +02:00
Beautiful Jekyll has been used in over 500 websites in its first 6 months, and tens of thousands of times since its inception. Here is a sample of some websites that use Beautiful Jekyll.
2015-09-06 04:11:36 +02:00
2016-10-11 02:58:30 +02:00
### Project/company websites
2015-09-06 03:48:37 +02:00
| Website | Description |
| :------ |:----------- |
2018-10-11 18:01:58 +02:00
| [repidemicsconsortium.org/](https://www.repidemicsconsortium.org/) | R Epidemics Consortium |
2018-03-26 17:13:44 +02:00
| [vaccineimpact.org](https://www.vaccineimpact.org/) | Vaccine Impact Modelling Consortium |
2015-09-15 06:32:34 +02:00
| [derekogle.com/fishR](http://derekogle.com/fishR/) | Using R for Fisheries Analyses |
2015-09-06 03:48:37 +02:00
| [bigdata.juju.solutions](http://bigdata.juju.solutions) | Creating Big Data solutions Juju Solutions |
2015-09-21 00:53:51 +02:00
| [joecks.github.io/clipboard-actions](http://joecks.github.io/clipboard-actions/) | Clipboard Actions - an Android app |
2017-01-04 08:40:42 +01:00
| [deanattali.com/shinyjs](http://deanattali.com/shinyjs/) | shinyjs - an R package |
2015-09-06 03:48:37 +02:00
| [blabel.github.io](http://blabel.github.io) | Library for canonicalising blank node labels in RDF graphs |
2016-04-25 21:01:38 +02:00
| [reactionic.github.io](http://reactionic.github.io) | Create iOS and Android apps with React and Ionic |
| [ja2-stracciatella.github.io](http://ja2-stracciatella.github.io) | Jagged Alliance 2 Stracciatella |
2017-03-08 16:37:56 +01:00
| [ddocent.com](http://ddocent.com/) | RADSeq Bioinformatics and Beyond |
2018-05-04 19:21:12 +02:00
| [guitarlessons.org](https://www.guitarlessons.org/) | Free online guitar lessons for all |
2018-06-13 22:19:32 +02:00
| [terremotocentroitalia.info](https://www.terremotocentroitalia.info/) | Information about the 2016 Italy earthquake |
2015-09-06 03:48:37 +02:00
2016-10-11 02:58:30 +02:00
### Personal websites
2015-09-06 03:48:37 +02:00
| Website | Who | What |
| :------ |:--- | :--- |
2018-10-11 18:01:58 +02:00
| [deanattali.com](https://deanattali.com) | Dean Attali | Creator of Beautiful Jekyll |
2015-09-06 03:48:37 +02:00
| [ouzor.github.io](http://ouzor.github.io) | Juuso Parkkinen | Data scientist |
2015-09-15 06:32:34 +02:00
| [derekogle.com](http://derekogle.com/) | Derek Ogle | Professor of Mathematical Sciences and Natural Resources |
2016-02-11 23:00:24 +01:00
| [melyanna.github.io](http://melyanna.github.io/) | Melyanna | Shows off her nice art |
2016-04-22 09:21:14 +02:00
| [chauff.github.io](http://chauff.github.io/) | Claudia Hauff | Professor at Delft University of Technology |
2016-04-25 11:05:39 +02:00
| [kootenpv.github.io](http://kootenpv.github.io/) | Pascal van Kooten | Data analytics |
2016-07-08 09:49:12 +02:00
| [sjackman.ca](http://sjackman.ca) | Shaun Jackman | PhD candidate in bioinformatics |
2016-10-11 20:55:32 +02:00
| [anudit.in](http://www.anudit.in/) | Anudit Verma | Engineering student |
| [sharepointoscar.github.io](http://sharepointoscar.github.io) | Oscar Medina | Independent Hacker |
2018-05-28 23:20:03 +02:00
| [ocram85.com](https://ocram85.com) | Marco Blessing | A personal blog about PowerShell and automation |
2018-07-06 17:36:50 +02:00
| [khanna.cc](https://khanna.cc/) | Harry Khanna | Law and software |
2015-09-06 03:48:37 +02:00
2020-04-27 03:17:38 +02:00
## Advanced: Using `remote_theme`
Instead of forking this repository, it's possible to use GitHub's `remote_theme` feature. This is an advanced feature only suitable for people who are familiar with GitHub's remote themes feature and who know how to write jekyll sites from scratch. You can either use remote themes directly on GitHub or a Jekyll plugin - you should look up the official documentation for whichever method you want to use.
Regardless of which of the two methods you choose, after setting up beautiful-jekyll as a remote theme you'll need to:
- Edit the `_config.yml` file (or create it if it doesn't exist) and add a line `remote_theme: daattali/beautiful-jekyll` (make sure to remove any previous `theme` or `remote_theme` parameters that may have been there before).
2020-04-27 04:20:10 +02:00
- Go through beautiful-jekyll's `_config.yml` file and copy any settings you want to use into your project's config file.
- Some features will not work because of missing files that you'll need to copy from beautiful-jekyll into your project. To enable the `tags` feature, you need to copy `tags.html`. To enable the RSS feed, copy `feed.xml`. If you use staticman comments, copy `staticman.yml` and `_data/ui-text.yml`.
2020-04-27 03:17:38 +02:00
- Create any pages/blog posts using the YAML parameters and layouts available in Beautiful-Jekyll that are mentioned above.
- If you want the home page to include a feed of all blog posts, create an `index.html` file and use `layout: home` in its YAML.
- If you want to replace any file served from beautiful-jekyll (such as a CSS file, a layout, or an include), you'll need to place it with the exact same path in your own jekyll repo (e.g. `/assets/css/main.css`)
Below is a summary of the steps required to set up a site with remote themes:
2020-04-27 03:21:22 +02:00
#### Remote themes with a GitHub repository
2020-04-27 03:17:38 +02:00
- Create a new repository or go to an existing repository.
- Go to _Settings_, scroll down to the _GitHub Pages_ section, and choose "master branch" as the source (not "master branch /docs folder"!).
2020-04-27 03:21:22 +02:00
#### Remote themes with a Ruby Jekyll site
2020-04-27 03:17:38 +02:00
- Create a new jekyll site using `jekyll new <projectname>`.
- Add `gem "jekyll-remote-theme"` to your Gemfile and then run `bundle install` to install the plugin.
- Add `- jekyll-remote-theme` to the plugins section of your `_config.yml` file to activate the plugin.
2020-04-27 03:56:41 +02:00
- Serve the jekyll site as usual (e.g. `bundle exec jekyll serve -H 0.0.0.0`)
2020-04-27 03:17:38 +02:00
2018-04-01 07:06:37 +02:00
## FAQ and support
2017-10-17 02:21:57 +02:00
2018-04-01 07:05:34 +02:00
If you need any help, I suggest heading over to the [Jekyll support forum](https://talk.jekyllrb.com/).
2018-10-11 18:01:58 +02:00
Beautiful Jekyll is actively used by thousands of people with wildly varying degrees of competency, so it's impossible to answer all the questions that may arise. Below are answers to a few very common questions. Most questions that I get asked are not directly related to this theme, and instead are more general questions about Jekyll or web development. Many such questions can be answered by reading the [Jekyll documentation](https://jekyllrb.com/) or with Google.
2017-10-17 02:21:57 +02:00
#### What if I don't want the website to be `https://<yourusername>.github.io`?
Every GitHub user can have one repository (repository = project) named `<yourusername>.github.io` and the website for that repository will be `https://<yourusername>.github.io`.
If you want your project to be named something else, for example `MyAwesomeProject`, that's no problem! All you have to do is go to _Settings_ at the top right corner of the page, and rename your repository to `MyAwesomeProject` (remember to click on the _Rename_ button to confirm!). Then you need to scroll down to the _GitHub Pages_ section and choose "master branch" as the source (not "master branch /docs folder"!).
2017-10-17 02:21:57 +02:00
#### How do I change the number of posts per page OR the colour of the navigation bar OR the image in the navigation bar OR ...?
Beautiful Jekyll is built to be very customizable, and as such, many questions about "how do I change ..." can be answered by looking at the `_config.yml` file. The configuration file has many adjustable parameters to customize your site.
#### How do I add a favicon to my site?
2020-04-27 01:39:51 +02:00
Easy! Just place a valid `favicon.ico` in the root directory of your project. And then wait! It can take a while to update.
2017-10-17 02:21:57 +02:00
#### How do I move the blog to another page instead of having it on the home page?
The default style of Beautiful Jekyll is to feature the blog feed on the front page. But for many sites that's not the ideal structure, and you may want to have a separate dedicated page for the blog posts. To have the blog hosted on a different URL (for example at `<mysite.com>/blog`), copy the `index.html` file into a folder with the same name as the desired page (for example, to `blog/index.html`), and in the `_config.yml` file you need to add a parameter `paginate_path: "/<page name>/page:num/"` (for example `paginate_path: "/blog/page:num/"`).
#### What size do you recommend using for the `bigimg` photos?
Unfortunately, this is a no-answer! There isn't a one-size-fits-all solution to this, because every person will view your site on a different browser with different dimensions. Some browsers will have very wide aspect ratio, some will be narrower, some will be vertical (such as phones), different phones have different screens, etc. The image will always be centered, so the only tip I can give is that you should make sure the important part of the image is in the middle so that it'll always show. Other than that, every browser will show a different clipping of the image.
2019-07-02 20:54:48 +02:00
#### How do I use MathJax equations in my posts?
MathJax can be easily integrated into your website with a one-line addition. You can see [this discussion](https://github.com/daattali/beautiful-jekyll/issues/195) for more information.
2016-10-11 02:58:30 +02:00
## Credits
2015-09-06 03:58:31 +02:00
This template was not made entirely from scratch. I would like to give special thanks to:
- [Barry Clark](https://github.com/barryclark) and his project [Jekyll Now](https://github.com/barryclark/jekyll-now), from whom I've taken several ideas and code snippets, as well as some documenation tips.
- [Iron Summit Media](https://github.com/IronSummitMedia) and their project [Bootstrap Clean Blog](https://github.com/IronSummitMedia/startbootstrap-clean-blog), from which I've used some design ideas and some of the templating code for posts and pagination.
2018-10-11 18:01:58 +02:00
I'd also like to thank [Dr. Jekyll's Themes](https://drjekyllthemes.github.io/), [Jekyll Themes](http://jekyllthemes.org/), and another [Jekyll Themes](http://jekyllrc.github.io/jekyllthemes/) for featuring Beautiful Jekyll in their Jekyll theme directories.
2015-09-06 03:58:31 +02:00
2016-10-11 02:58:30 +02:00
## Contributions
2015-09-06 03:58:31 +02:00
If you find anything wrong or would like to contribute in any way, feel free to create a pull request/open an issue/send me a message. Any comments are welcome!
2019-06-22 17:49:39 +02:00
Thank you to [all contributors](https://github.com/daattali/beautiful-jekyll/graphs/contributors). Special thanks to [@OCram85](https://github.com/OCram85) and [@abelcheung](https://github.com/abelcheung) for contributing multiple times as well as helping with discussions.
If you do fork or clone this project to use as a template for your site, I would appreciate if you keep the link in the footer to this project. I've noticed that several people who forked this repo removed the attribution and I would prefer to get the recognition if you do use this :)
2015-09-06 03:58:31 +02:00
2016-10-11 02:58:30 +02:00
## Known limitations
2015-03-03 07:54:59 +01:00
2020-04-27 01:39:51 +02:00
- If there are many navigation bar links and an avatar, some of the links may get partially hidden behind the avatar. I suggest either re-thinking the number of links, or not using an avatar.