Fixed Favicon, Add Doctype, and add dynamic Lang in html
This commit is contained in:
parent
dd546d568c
commit
35c7914b94
3 changed files with 16 additions and 3 deletions
BIN
alplora/static/alplora/img/favicon.ico
Executable file → Normal file
BIN
alplora/static/alplora/img/favicon.ico
Executable file → Normal file
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 2.9 KiB |
|
@ -1,5 +1,8 @@
|
||||||
{% load staticfiles i18n%}
|
{% load staticfiles i18n%}
|
||||||
<html lang="en"><head>
|
|
||||||
|
<html lang={{language}}>
|
||||||
|
|
||||||
|
<head>
|
||||||
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||||
|
@ -501,3 +504,4 @@
|
||||||
<div id="feedly-mini" title="feedly Mini tookit"></div>
|
<div id="feedly-mini" title="feedly Mini tookit"></div>
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
<!DOCTYPE html>
|
|
@ -1,8 +1,17 @@
|
||||||
from django.views.generic import TemplateView
|
from django.views.generic import TemplateView
|
||||||
|
from django.utils.translation import get_language
|
||||||
|
|
||||||
class IndexView(TemplateView):
|
class IndexView(TemplateView):
|
||||||
template_name = "alplora/index.html"
|
template_name = "alplora/index.html"
|
||||||
|
|
||||||
|
def get_context_data(self, *args, **kwargs):
|
||||||
|
context = super(IndexView, self).get_context_data(**kwargs)
|
||||||
|
language = get_language()
|
||||||
|
context.update({
|
||||||
|
'language': language
|
||||||
|
})
|
||||||
|
return context
|
||||||
|
|
||||||
|
|
||||||
class LoginView(TemplateView):
|
class LoginView(TemplateView):
|
||||||
template_name = "alplora/login.html"
|
template_name = "alplora/login.html"
|
||||||
|
|
Loading…
Reference in a new issue