2020-06-02 15:58:20 +00:00
|
|
|
from core.views.backend import *
|
2020-04-07 19:52:10 +00:00
|
|
|
|
|
|
|
class IndexView(TemplateView):
|
|
|
|
template_name = f"{settings.EXPEPHALON_FRONTEND}/index.html"
|
|
|
|
|
2020-04-16 09:02:22 +00:00
|
|
|
def get_context_data(self, **kwargs):
|
|
|
|
context = super().get_context_data(**kwargs)
|
|
|
|
context["title"] = "Home"
|
2020-06-02 15:58:20 +00:00
|
|
|
return context
|