mirror of
https://github.com/tjsga/studyguidebank.git
synced 2025-04-03 20:00:17 -04:00
Create simple base.html and add meta information
This commit is contained in:
parent
c89f58ee3a
commit
7cec923dae
|
@ -1,10 +1,11 @@
|
|||
# Study Bank
|
||||
|
||||
## Development
|
||||
|
||||
- clone the git repo
|
||||
- create `settings/secret.py` based on `settings/secret.sample`
|
||||
- register an OAuth app with Ion for authentication (client-type = confidential, auth-grant-type = authorization-code)
|
||||
- copy the client_id for SOCIAL_AUTH_ION_KEY and client_secret for SOCIAL_AUTH_ION_SECRET from Ion to `settings/secret.py`
|
||||
- edit `settings/__init__.py` so that `MEDIA_ROOT` and `STATIC_ROOT` point to your desired directories (you also need to create these directories)
|
||||
- uploaded documents will be stored in the media directory, and static files will be collected to the static directory
|
||||
- django will not serve any files in either of these directories, so you need to make sure your web server will
|
||||
- django will not serve any files in either of these directories, so you need to make sure your web server will
|
||||
|
|
|
@ -4,7 +4,7 @@ from django.http import HttpResponse
|
|||
# Create your views here.
|
||||
|
||||
def index_view(request):
|
||||
#return render(request, "home/index.html")
|
||||
return render(request, "base.html")
|
||||
return HttpResponse("hello world")
|
||||
|
||||
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
<!DOCTYPE html>
|
||||
{% load static %}
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Study Guide Bank</title>
|
||||
<meta name="description" content="Study guide bank for students of Thomas Jefferson High School for Science and Technology.">
|
||||
<meta name="keywords" content="tjhsst, study bank, study guide, guide bank, tjhsst study, tjhsst background-size">
|
||||
|
||||
|
||||
</script>
|
||||
{% block head %}{% endblock %}
|
||||
</head>
|
||||
<body id="page">
|
||||
{% block main %}{% endblock %}
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user