mirror of
https://github.com/Rushilwiz/spaceout.git
synced 2025-04-06 13:10:16 -04:00
Added basic routing in react
This commit is contained in:
parent
e06b9266c9
commit
a73f5abf10
3
.gitignore
vendored
3
.gitignore
vendored
|
@ -1,3 +1,4 @@
|
|||
.idea/
|
||||
__pycache__/
|
||||
static/
|
||||
db.sqlite3
|
||||
front_end/static/front_end/
|
|
@ -16,8 +16,10 @@ Including another URLconf
|
|||
from django.contrib import admin
|
||||
from django.urls import path, include
|
||||
from api import urls as api_urls
|
||||
from front_end import urls as front_end_urls
|
||||
|
||||
urlpatterns = [
|
||||
path('admin/', admin.site.urls),
|
||||
path('api', include(api_urls)),
|
||||
path('', include(front_end_urls))
|
||||
]
|
||||
|
|
19
front_end/static/css/index.css
Normal file
19
front_end/static/css/index.css
Normal file
|
@ -0,0 +1,19 @@
|
|||
html, body {
|
||||
height: 100%;
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
#main {
|
||||
position: fixed;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
left: 0;
|
||||
top: 0;
|
||||
}
|
||||
|
||||
#app {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
display: flex;
|
||||
}
|
21
front_end/urls.py
Normal file
21
front_end/urls.py
Normal file
|
@ -0,0 +1,21 @@
|
|||
"""djangoProject URL Configuration
|
||||
|
||||
The `urlpatterns` list routes URLs to views. For more information please see:
|
||||
https://docs.djangoproject.com/en/3.1/topics/http/urls/
|
||||
Examples:
|
||||
Function views
|
||||
1. Add an import: from my_app import views
|
||||
2. Add a URL to urlpatterns: path('', views.home, name='home')
|
||||
Class-based views
|
||||
1. Add an import: from other_app.views import Home
|
||||
2. Add a URL to urlpatterns: path('', Home.as_view(), name='home')
|
||||
Including another URLconf
|
||||
1. Import the include() function: from django.urls import include, path
|
||||
2. Add a URL to urlpatterns: path('blog/', include('blog.urls'))
|
||||
"""
|
||||
from django.urls import path
|
||||
from .views import *
|
||||
|
||||
urlpatterns = [
|
||||
path('', index),
|
||||
]
|
|
@ -1,3 +1,6 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
|
||||
# Create your views here.
|
||||
def index(request, *args, **kwargs):
|
||||
return render(request, 'front_end/index.html')
|
||||
|
|
|
@ -1,10 +1,23 @@
|
|||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8">
|
||||
<title>Title</title>
|
||||
</head>
|
||||
<body>
|
||||
<html>
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
||||
<title>Hack TJ 2020</title>
|
||||
{% load static %}
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.5.1/jquery.min.js"></script>
|
||||
<link
|
||||
rel="stylesheet"
|
||||
href="https://fonts.googleapis.com/css?family=Roboto:300,400,500,700&display=swap"
|
||||
/>
|
||||
<link rel="stylesheet" type="text/css" href="{% static "css/index.css" %}"
|
||||
/>
|
||||
</head>
|
||||
<body>
|
||||
<div id="main">
|
||||
<div id="app"></div>
|
||||
</div>
|
||||
|
||||
</body>
|
||||
<script src="{% static "front_end/main.js" %}"></script>
|
||||
</body>
|
||||
</html>
|
Loading…
Reference in New Issue
Block a user