From 97fdc56433c26e2e6cedecd57ee8eaa2258de640 Mon Sep 17 00:00:00 2001 From: Michael Kapelko Date: Wed, 5 Dec 2018 12:28:05 +0300 Subject: [PATCH] Create Education page --- pelican/content/pages/education-ru.md | 27 +++++++++++++++++++++++++++ pelican/content/pages/education.md | 26 ++++++++++++++++++++++++++ pelican/pelicanconf.py | 1 + pelican/publishconf.py | 1 + 4 files changed, 55 insertions(+) create mode 100644 pelican/content/pages/education-ru.md create mode 100644 pelican/content/pages/education.md diff --git a/pelican/content/pages/education-ru.md b/pelican/content/pages/education-ru.md new file mode 100644 index 0000000..5dc8d58 --- /dev/null +++ b/pelican/content/pages/education-ru.md @@ -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 + diff --git a/pelican/content/pages/education.md b/pelican/content/pages/education.md new file mode 100644 index 0000000..2493f65 --- /dev/null +++ b/pelican/content/pages/education.md @@ -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 + diff --git a/pelican/pelicanconf.py b/pelican/pelicanconf.py index 8029596..c6436d3 100644 --- a/pelican/pelicanconf.py +++ b/pelican/pelicanconf.py @@ -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 diff --git a/pelican/publishconf.py b/pelican/publishconf.py index 4484a93..047487c 100644 --- a/pelican/publishconf.py +++ b/pelican/publishconf.py @@ -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