Browse Source

Create Education page

dev
parent
commit
97fdc56433
4 changed files with 55 additions and 0 deletions
  1. +27
    -0
      pelican/content/pages/education-ru.md
  2. +26
    -0
      pelican/content/pages/education.md
  3. +1
    -0
      pelican/pelicanconf.py
  4. +1
    -0
      pelican/publishconf.py

+ 27
- 0
pelican/content/pages/education-ru.md View File

@@ -0,0 +1,27 @@
Title: Обучение
Slug: education
Lang: ru

#### Научитесь создавать игры

Данная страница является отправной точкой для изучения `ogstudio`, инструмента
для создания в кратчайшие возможные сроки трёхмерных игр, которые работают
везде: веб, десктоп и мобилки.

Процесс обучения базируется на [GitHub Classroom][github-classroom].
Вы можете начать в любое время. Для этого просто октройте
адрес URL курса и следуйте инструкциям в README.
GitHub сам создаст хранилища (репозитории) для вас в организации
[OGStudio-Education][ogstudio-education].

#### Курсы

Сейчас мы работаем над первым курсом, чтобы помочь вам начать разрабатывать
игры с помощью `ogstudio`.

Попробуйте [Вводный][1.Introduction] курс.

[github-classroom]: https://classroom.github.com
[ogstudio-education]: https://github.com/OGStudio-Education
[1.Introduction]: https://classroom.github.com/a/7eZOApFj


+ 26
- 0
pelican/content/pages/education.md View File

@@ -0,0 +1,26 @@
Title: Education
Slug: education
Lang: en

#### Learn to create games

This page is your starting point to learn `ogstudio`, a tool to create 3D
games in the shortest time possible that run anywhere: web, desktop, and
mobile.

Education process is built around [GitHub Classroom][github-classroom].
You can start any time by simply opening course URLs and
following instructions in README. GitHub creates repositories for you
inside [OGStudio-Education][ogstudio-education] organization.

#### Courses

We are currently working on the first course to let you know
how to get your game development started with `ogstudio`.

Check out [Introduction][1.Introduction] course.

[github-classroom]: https://classroom.github.com
[ogstudio-education]: https://github.com/OGStudio-Education
[1.Introduction]: https://classroom.github.com/a/7eZOApFj


+ 1
- 0
pelican/pelicanconf.py View File

@@ -22,6 +22,7 @@ AUTHOR_FEED_RSS = None
# Menu
MENUITEMS = (
('Games', '/pages/games.html'),
('Education', '/pages/education.html'),
('About', '/pages/about.html'),
)
DISPLAY_PAGES_ON_MENU = False


+ 1
- 0
pelican/publishconf.py View File

@@ -29,6 +29,7 @@ OUTPUT_PATH = '..'
# Menu
MENUITEMS = (
('Games', '/pages/games.html'),
('Education', '/pages/education.html'),
('About', '/pages/about.html'),
)
DISPLAY_PAGES_ON_MENU = False

Loading…
Cancel
Save