-
-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add Russian language support (#145)
* feat: add russian language * feat: add russian version in example site and config file
- Loading branch information
1 parent
e9befdb
commit fc80687
Showing
13 changed files
with
513 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
--- | ||
title: "Домашняя" | ||
author : "Hugo Authors" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: О проекте | ||
description: 'Hugo - самый быстрый фреймворк для создания сайтов' | ||
author: Hugo Authors | ||
--- | ||
|
||
Написанный на Go, Hugo - это генератор статических сайтов с открытом исходным кодом и лицензией [Apache Licence 2.0.](https://github.com/gohugoio/hugo/blob/master/LICENSE). Hugo поддерживает TOML, YAML и JSON типы файлов с данными, Markdown, HTML файлы и использует шорт коды для добавления богатого содержания. Другие возможности: таксономия, режим нескольких языков, обработка изображений, настраиваемые выходные форматы, сжатие HTML/CSS/JS и поддержка Sass SCSS рабочих процессов. | ||
|
||
Hugo использует множество проектов с исходным кодом, такие как: | ||
|
||
* https://github.com/yuin/goldmark | ||
* https://github.com/alecthomas/chroma | ||
* https://github.com/muesli/smartcrop | ||
* https://github.com/spf13/cobra | ||
* https://github.com/spf13/viper | ||
|
||
Использование Hugo идеально для блогов, корпоративных вебсайтов, творческих портфолио, on-line журналов, одностраничных приложений или вебсайтов с тысячью страниц. | ||
|
||
Hugo для людей, которые хотят иметь контроль на кодов их веб сайтов и не беспокоиться о настройке полноценного окружения, зависимостей и баз данных. | ||
|
||
Вебсайты, которые созданы с помощью Hugo, очень быстры, безопасны и могут быть загружены куда угодно, включая AWS, GitHub Pages, Heroku, Netlify и любые другие хостинг провайдеры. | ||
|
||
Узнайте больше и сотрудничайте на [GitHub](https://github.com/gohugoio). |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
--- | ||
title: "Записи" | ||
--- |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
--- | ||
title: Поддержка смайликов | ||
date: 2023-02-01 | ||
author: Hugo Authors | ||
description: Инструкция для использования смайликов в Hugo | ||
tags: | ||
- emoji | ||
--- | ||
|
||
Смайлики могут быть задействован в проекте Hugo несколькими способами. | ||
<!--more--> | ||
[`emojify`](https://gohugo.io/functions/emojify/) функция может быть напрямую вызвана в шаблоне или [встроенный короткий код](https://gohugo.io/templates/shortcode-templates/#inline-shortcodes). | ||
|
||
Для включения смайликов на весь проект, установите значение `enableEmoji = true` в файле `config.toml` вашего сайта. Вы можете набрать смайлик shorthand codes непосредственно в файле с содержимым; К примеру, | ||
|
||
`:see_no_evil:` :see_no_evil: `:hear_no_evil:` :hear_no_evil: `:speak_no_evil:` :speak_no_evil: | ||
|
||
Я :heart: Hugo! 😁 | ||
|
||
[Emoji cheat sheet](http://www.emoji-cheat-sheet.com/) полезное руководство по коротким кодам для смайликов. | ||
|
||
*** | ||
|
||
**Заметка** Следующие шаги включат стандартные Unicode символы смайликов и последовательно в Hugo, однако отрисовка этих глифов зависит от браузера и платформы. Для добавления стиля к смайликам Вы можете использовать сторонние шрифты или наборы шрифтов; К примеру: | ||
|
||
{{< highlight css >}} | ||
.emoji { | ||
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols; | ||
} | ||
{{< /highlight >}} | ||
|
||
{{< css.inline >}} | ||
<style> | ||
.emojify { | ||
font-family: Apple Color Emoji, Segoe UI Emoji, NotoColorEmoji, Segoe UI Symbol, Android Emoji, EmojiSymbols; | ||
font-size: 2rem; | ||
vertical-align: middle; | ||
} | ||
@media screen and (max-width:650px) { | ||
.nowrap { | ||
display: block; | ||
margin: 25px 0; | ||
} | ||
} | ||
</style> | ||
{{< /css.inline >}} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,164 @@ | ||
--- | ||
title: Инструкция по использованию Markdown | ||
date: 2023-02-11 | ||
author: Hugo Authors | ||
description: Пример статьи, демонстрирующей базовый синтаксис Markdown и форматирование элементов HTML. | ||
--- | ||
|
||
В этой статье предлагается образец базового синтаксиса Markdown, который можно использовать в файлах контента Hugo, а также показано как расширенна разметка базовые элементы HTML CSS в теме Hugo. | ||
<!--more--> | ||
|
||
## Headings | ||
|
||
Следующий HTML `<h1>`—`<h6>` элементы показывают шесть уровней заголовков разделов. От самого большого уровня `<h1>` до самого малого `<h6>`. | ||
|
||
# H1 | ||
|
||
## H2 | ||
|
||
### H3 | ||
|
||
#### H4 | ||
|
||
##### H5 | ||
|
||
###### H6 | ||
|
||
## Параграф | ||
|
||
Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat. | ||
|
||
Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat. | ||
|
||
## Изображение | ||
|
||
Вы можете использовать следующий синтаксис для добавления изображения. Путь до изображения должна быть относителен к файлу `index.md`. | ||
|
||
```markdown | ||
![Landscape](1.jpg) | ||
``` | ||
|
||
![Landscape](1.jpg) | ||
|
||
Вы так же можете использовать изображение из внешних источников. | ||
|
||
```markdown | ||
![Image](https://source.unsplash.com/random/600x400/?tech) | ||
``` | ||
|
||
![Image](https://source.unsplash.com/random/600x400/?tech) | ||
|
||
## Blockquote | ||
|
||
Blockquote может подсветить контент который был процитирован из других источников. Опционально, необязательно с цитатой, которая должна находиться в пределах `footer` или `cite` элементов, и опционально, со встроенными изменениями, такими как аннотации и сокращения. | ||
|
||
### Blockquote без атрибутов | ||
|
||
> Вы можете использовать синтаксис Markdown совместно с blockquote, к примеру, **bold**, _italics_, [links](https://gohugo.io/), `code`. | ||
### Blockquote с атрибутов | ||
|
||
> Don't communicate by sharing memory, share memory by communicating.<br> | ||
> — <cite>Rob Pike[^1]</cite> | ||
[^1]: Приведенная выше цитата взята из выступления Роба Пайка [talk](https://www.youtube.com/watch?v=PAAkCSZUG1c) на Gopherfest, 18 ноября 2015. | ||
|
||
## Таблицы | ||
|
||
Таблицы не часть основных спецификаций Markdown. Но Hugo поддерживает их из коробки. | ||
|
||
Name | Age | ||
--------|------ | ||
Bob | 27 | ||
Alice | 23 | ||
|
||
### Markdown в таблицах | ||
|
||
| Italics | Bold | Code | | ||
| -------- | -------- | ------ | | ||
| *italics* | **bold** | `code` | | ||
|
||
## Блок кода | ||
|
||
### Блок кода с обратными кавычками | ||
|
||
```html | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Example HTML5 Document</title> | ||
</head> | ||
<body> | ||
<p>Test</p> | ||
</body> | ||
</html> | ||
``` | ||
|
||
### Блок кода с отступом в четыре пробела | ||
|
||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Example HTML5 Document</title> | ||
</head> | ||
<body> | ||
<p>Test</p> | ||
</body> | ||
</html> | ||
|
||
### Блок кода с коротким кодом внутренней подсветки Hugo | ||
|
||
{{< highlight html >}} | ||
<!doctype html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="utf-8"> | ||
<title>Example HTML5 Document</title> | ||
</head> | ||
<body> | ||
<p>Test</p> | ||
</body> | ||
</html> | ||
{{< /highlight >}} | ||
|
||
### Встроенный код | ||
|
||
Используйте обратные кавычки для отсылки к `variable` в пределах предложения. | ||
|
||
## Списки | ||
|
||
### Упорядоченный список | ||
|
||
1. First item | ||
2. Second item | ||
3. Third item | ||
|
||
### Неупорядоченный список | ||
|
||
* List item | ||
* Another item | ||
* And another item | ||
|
||
### Вложенные списки | ||
|
||
* Fruit | ||
* Apple | ||
* Orange | ||
* Banana | ||
* Dairy | ||
* Milk | ||
* Cheese | ||
|
||
## Остальные элементы — abbr, sub, sup, kbd, mark | ||
|
||
<abbr title="Graphics Interchange Format">GIF</abbr> bitmap формат изображений. | ||
|
||
H<sub>2</sub>O | ||
|
||
X<sup>n</sup> + Y<sup>n</sup> = Z<sup>n</sup> | ||
|
||
Нажмите <kbd>CTRL</kbd>+<kbd>ALT</kbd>+<kbd>Delete</kbd> для завершения сессии. | ||
|
||
Большинство <mark>саламандр</mark> ведут ночной образ жизни и охотятся на насекомых, червей и других мелких существ. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,49 @@ | ||
--- | ||
author: Hugo Authors | ||
title: Текст с математическими символами | ||
date: 2023-04-01 | ||
description: Краткое руководство по настройке KaTeX | ||
math: true | ||
--- | ||
|
||
Математические обозначения в проекте Hugo можно включить с помощью | ||
[сторонние библиотеки JavaScript](https://github.com/hugo-sid/hugo-blog-awesome/blob/main/layouts/partials/helpers/katex.html). | ||
|
||
<!--more--> | ||
|
||
В этом примере, мы будем использовать [KaTeX](https://katex.org/). | ||
|
||
- Для включения KaTeX глобально, установите параметр `math` в `true` в конфигурационный файл проекта в формате, который вы используете. | ||
- `config.toml` | ||
```toml | ||
[params] | ||
math = true | ||
``` | ||
- `config.yaml` | ||
```yaml | ||
params: | ||
math: true | ||
``` | ||
- Для включения KaTeX для каждой страницы, добавьте параметр `math: true` в | ||
Markdown настройки файла с контентом как показано. | ||
|
||
``` | ||
--- | ||
math: true | ||
--- | ||
``` | ||
|
||
**Заметка:** Онлайн заметка | ||
[Supported TeX Functions](https://katex.org/docs/supported.html) полезный ресурс. | ||
|
||
### Пример | ||
|
||
- Блок с математикой: | ||
|
||
$$ | ||
\varphi = 1+\frac{1} {1+\frac{1} {1+\frac{1} {1+\cdots} } } | ||
$$ | ||
|
||
- Встроенная математика: | ||
|
||
Это полином: $5x^2 + 2y -7$. |
Oops, something went wrong.