New app 'pages' create index page and static dirs

This commit is contained in:
Lukas 2021-08-29 00:28:37 +02:00
parent 940b588f57
commit 9208149749
15 changed files with 163 additions and 0 deletions

View File

@ -38,6 +38,7 @@ INSTALLED_APPS = [
'django.contrib.messages',
'django.contrib.staticfiles',
'polls.apps.PollsConfig',
'pages',
]
MIDDLEWARE = [

View File

@ -17,6 +17,7 @@ from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('', include('pages.urls')),
path('polls/', include('polls.urls')),
path('admin/', admin.site.urls),
]

View File

3
djlearn/pages/admin.py Normal file
View File

@ -0,0 +1,3 @@
from django.contrib import admin
# Register your models here.

6
djlearn/pages/apps.py Normal file
View File

@ -0,0 +1,6 @@
from django.apps import AppConfig
class PagesConfig(AppConfig):
default_auto_field = 'django.db.models.BigAutoField'
name = 'pages'

View File

3
djlearn/pages/models.py Normal file
View File

@ -0,0 +1,3 @@
from django.db import models
# Create your models here.

View File

@ -0,0 +1,82 @@
body {
font-family: monospace;
margin: 0;
overflow-x: hidden;
color: white;
}
::-webkit-scrollbar {
display: none;
}
.landing-main {
background: url("/static/img/nasa_splash.jpg") no-repeat center center fixed;
background-size: cover;
}
.landing-section {
min-height: 100vh;
width: 100vw;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.landing-section-content {
padding: 2rem 0 2rem 0;
background: rgba(0,0,0,0.5);
width: 100vw;
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
color: #ccc;
}
.brand {
margin: 0;
color: #c55e00;
font-size: 3em;
}
.brand-text {
color: gold;
}
.header {
width: 100vw;
display: flex;
top: 0;
left: 0;
position: absolute;
background: rgba(0,0,0,0.5);
}
.header-link {
margin: 1rem;
border-bottom: 3px solid #c55e00;
font-size: 1.2rem;
color: #222;
text-decoration: none;
color: #ccc;
}
.header-text {
margin: 1rem 1rem 1rem auto;
font-size: 1.2rem;
color: #ccc;
}
.header-text-small {
margin: 1rem;
font-size: 0.75rem;
color: #ccc;
}
#logo {
padding: 3px 0 0 0;
width: 50px;
height: 50px;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 350 KiB

View File

@ -0,0 +1,54 @@
{% load static %}
<!DOCTYPE html>
<html>
<head>
<!-- Source for this example: https://dev.to/hmlon/creating-a-landing-page-in-django-20pg -->
<title>Lyux - Landing</title>
<link rel="stylesheet" type="text/css" href="{% static 'css/landing.css' %}">
<link rel="shortcut icon" href="{% static 'img/logo.ico' %}"/>
<meta name-="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<header class="header">
<div>
<a href="/"><img id="logo" src="{% static 'img/logo.png' %}" alt="Logo"></a>
</div>
<div class="header-text-small">made using Django❤</div>
<div class="header-text">Sign in:</div>
<a href="#" class="header-link">Github</a>
<a href="#" class="header-link">Twitter</a>
</header>
<section class="landing-section landing-main">
<div class="landing-section-content">
<h1 class="brand">Lyux</h1>
<h2>
<span class="brand-text">Land</span>ing
<span class="brand-text">Pa</span>ge
</h2>
<p class="landing-main-text">
This is my first landing Page
<br>
I can do everything i want here.
</p>
</div>
</section>
<section class="landing-section landing-features">
<section class="landing-feature feature-github">
<h2>Connect with <span class="brand-text">Github</span></h2>
</section>
<section class="landing-feature feature-twitter">
<h2>Connect with <span class="brand-text">Twitter</span></h2>
</section>
</section>
</body>
</html>

3
djlearn/pages/tests.py Normal file
View File

@ -0,0 +1,3 @@
from django.test import TestCase
# Create your tests here.

6
djlearn/pages/urls.py Normal file
View File

@ -0,0 +1,6 @@
from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
]

4
djlearn/pages/views.py Normal file
View File

@ -0,0 +1,4 @@
from django.shortcuts import render
def index(request):
return render(request, 'pages/index.html')