Commit 9d25cfd4 authored by Li Niko M. Arceo's avatar Li Niko M. Arceo 🦈

Heroes and home added

parent 1f88a7c9
<html>
<title>Hero List</title>
</html>
\ No newline at end of file
<html>
<title>The Will of the Wisps Wiki</title>
</html>
\ No newline at end of file
......@@ -6,6 +6,7 @@ from .views import HomeView, CloudView, JesterView, SunfloweyView
urlpatterns = [
url(r'^$', HomeView.as_view(), name='home'),
url(r'^heroes$', HomeView.as_view(), name='heroes'),
url(r'^heroes/cloud$', CloudView.as_view(), name='cloud'),
url(r'^heroes/jester$', JesterView.as_view(), name='jester')
url(r'^heroes/sunflowey$', SunfloweyView.as_view(), name='sunflowey')
......
......@@ -2,6 +2,9 @@ from django.views.generic.base import TemplateView
class HomeView(TemplateView):
template_name =
class HeroesView(TemplateView):
template_name = 'home.html'
class CloudView(TemplateView):
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment