Jekyll theme zobacz projekt szablonu, or even use it today.
Link do opisu. Jekyll theme zobacz projekt szablonu, or even use it today.
2. Opcjonalnie, jeśli chcesz wyświetlić podgląd swojej witryny na komputerze, dodaj następujące elementy do swojej witryny Gemfile: Gemfile
:
```ruby
gem "github-pages", group: :jekyll_plugins
```
Secure to motyw Jekylla dla GitHub Pages umieszczony w pliku _config.yml
:
title: [Tytuł stony internetowej]
description: [krótki opis]
plik z kodem analizy odwiedzin strony
show_downloads: ["true" or "false" (unquoted) to indicate whether to provide a download URL]
google_analytics: [Your Google Analytics tracking ID]
Możesz dostosować kolorystykę strony, przez edycje pliku scss, więcej o tym na zajęciach w 2 i 3 klasie.
- Utwórz plik o nazwie
/assets/css/style.scss
w swojej witrynie - Add the following content to the top of the file, exactly as shown:
--- --- @import "{{ site.theme }}";
- Dodaj dowolny niestandardowy CSS (lub Sass, w tym import), bezpośrednio po linii
@import
Uwaga: jeśli chcesz zmienić zmienne Sass motywu, musisz ustawić nowe wartości przed linią @import
w arkuszu stylów.
- W przypadku niektórych zmian, takich jak niestandardowy
favicon
, możesz dodać niestandardowe pliki do lokalnego folderu_includes
. Pliki dostarczone z motywem stanowią punkt wyjścia i są dołączone do [oryginalnego szablonu układu](https://github. com/pages-themes/hacker/blob/master/_layouts/default.html). - Aby uzyskać bardziej rozbudowane zmiany, skopiuj oryginalny szablon z repozytorium motywu
(Pro- wskazówka: kliknij „raw”, aby ułatwić sobie kopiowanie) - Create a file called
/_layouts/default.html
in your site - Paste the default layout content copied in the first step
- Customize the layout as you'd like
Możesz dodać swoją stronę do usługi Google Analytics code. Dzięki temu będziesz widział statystyki twojej strony.
Google has released several iterations to their Google Analytics code over the years since this theme was first created. If you would like to take advantage of the latest code, paste it into _includes/head-custom-google-analytics.html
in your Jekyll site.
Templates often rely on URLs supplied by GitHub such as links to your repository or links to download your project. If you'd like to override one or more default URLs:
- Look at the template source to determine the name of the variable. It will be in the form of
{{ site.github.zip_url }}
. - Określ adres URL, którego szablon ma używać w pliku
_config.yml
Twojej witryny. Na przykład, jeśli zmienna tosite.github.url
, należy dodać:github: zip_url: http://example.com/download.zip another_url: another value
- When your site is built, Jekyll will use the URL you specified, rather than the default one provided by GitHub.
Note: You must remove the site.
prefix, and each variable name (after the github.
) should be indent with two space below github:
.
For more information, see the Jekyll variables documentation.
See the open issues for a list of proposed features (and known issues).
The Secure theme is intended to make it quick and easy for GitHub Pages users to create their first (or 100th) website. The theme should meet the vast majority of users' needs out of the box, erring on the side of simplicity rather than flexibility, and provide users the opportunity to opt-in to additional complexity if they have specific needs or wish to further customize their experience (such as adding custom CSS or modifying the default layout). It should also look great, but that goes without saying.
If you'd like to preview the theme locally (for example, in the process of proposing a change):
- Clone down the theme's repository (
git clone https://github.com/pages-themes/hacker
) cd
into the theme's directory- Run
script/bootstrap
to install the necessary dependencies - Run
bundle exec jekyll serve
to start the preview server - Visit
localhost:4000
in your browser to preview the theme
The theme contains a minimal test suite, to ensure a site with the theme would build successfully. To run the tests, simply run script/cibuild
. You'll need to run script/bootstrap
once before the test script will work.