Added robotics pages titles
This commit is contained in:
parent
63d96d0a2e
commit
0c2d560947
1 changed files with 4 additions and 0 deletions
|
@ -3,15 +3,18 @@ from project.common.views import CustomTemplate, MarkdownView
|
||||||
|
|
||||||
class IndexView(CustomTemplate):
|
class IndexView(CustomTemplate):
|
||||||
template_name = 'robotics/index.html'
|
template_name = 'robotics/index.html'
|
||||||
|
html_title = 'Student Robotics'
|
||||||
|
|
||||||
|
|
||||||
# 2015
|
# 2015
|
||||||
class Index2015View(CustomTemplate):
|
class Index2015View(CustomTemplate):
|
||||||
template_name = 'robotics/2015-index.html'
|
template_name = 'robotics/2015-index.html'
|
||||||
|
html_title = 'Student Robotics 2015'
|
||||||
|
|
||||||
|
|
||||||
class Robot2015View(CustomTemplate):
|
class Robot2015View(CustomTemplate):
|
||||||
template_name = 'robotics/2015-robot.html'
|
template_name = 'robotics/2015-robot.html'
|
||||||
|
html_title = 'The Robot | SR2015'
|
||||||
|
|
||||||
|
|
||||||
class Code2015View(MarkdownView):
|
class Code2015View(MarkdownView):
|
||||||
|
@ -21,3 +24,4 @@ class Code2015View(MarkdownView):
|
||||||
# 2014
|
# 2014
|
||||||
class Index2014View(CustomTemplate):
|
class Index2014View(CustomTemplate):
|
||||||
template_name = 'robotics/2014-index.html'
|
template_name = 'robotics/2014-index.html'
|
||||||
|
html_title = 'Student Robotics 2014'
|
||||||
|
|
Reference in a new issue