diff --git a/djlearn/djlearn/settings.py b/djlearn/djlearn/settings.py index ccc53c2..d5d5a0e 100644 --- a/djlearn/djlearn/settings.py +++ b/djlearn/djlearn/settings.py @@ -38,6 +38,7 @@ INSTALLED_APPS = [ 'django.contrib.messages', 'django.contrib.staticfiles', 'polls.apps.PollsConfig', + 'pages', ] MIDDLEWARE = [ diff --git a/djlearn/djlearn/urls.py b/djlearn/djlearn/urls.py index cd0e153..2b487eb 100644 --- a/djlearn/djlearn/urls.py +++ b/djlearn/djlearn/urls.py @@ -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), ] diff --git a/djlearn/pages/__init__.py b/djlearn/pages/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/djlearn/pages/admin.py b/djlearn/pages/admin.py new file mode 100644 index 0000000..8c38f3f --- /dev/null +++ b/djlearn/pages/admin.py @@ -0,0 +1,3 @@ +from django.contrib import admin + +# Register your models here. diff --git a/djlearn/pages/apps.py b/djlearn/pages/apps.py new file mode 100644 index 0000000..cdd024b --- /dev/null +++ b/djlearn/pages/apps.py @@ -0,0 +1,6 @@ +from django.apps import AppConfig + + +class PagesConfig(AppConfig): + default_auto_field = 'django.db.models.BigAutoField' + name = 'pages' diff --git a/djlearn/pages/migrations/__init__.py b/djlearn/pages/migrations/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/djlearn/pages/models.py b/djlearn/pages/models.py new file mode 100644 index 0000000..71a8362 --- /dev/null +++ b/djlearn/pages/models.py @@ -0,0 +1,3 @@ +from django.db import models + +# Create your models here. diff --git a/djlearn/pages/static/css/landing.css b/djlearn/pages/static/css/landing.css new file mode 100644 index 0000000..8fb6f2c --- /dev/null +++ b/djlearn/pages/static/css/landing.css @@ -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; +} \ No newline at end of file diff --git a/djlearn/pages/static/img/logo.ico b/djlearn/pages/static/img/logo.ico new file mode 100644 index 0000000..8d8db45 Binary files /dev/null and b/djlearn/pages/static/img/logo.ico differ diff --git a/djlearn/pages/static/img/logo.png b/djlearn/pages/static/img/logo.png new file mode 100644 index 0000000..8c07414 Binary files /dev/null and b/djlearn/pages/static/img/logo.png differ diff --git a/djlearn/pages/static/img/nasa_splash.jpg b/djlearn/pages/static/img/nasa_splash.jpg new file mode 100644 index 0000000..9412835 Binary files /dev/null and b/djlearn/pages/static/img/nasa_splash.jpg differ diff --git a/djlearn/pages/templates/pages/index.html b/djlearn/pages/templates/pages/index.html new file mode 100644 index 0000000..75ec9c0 --- /dev/null +++ b/djlearn/pages/templates/pages/index.html @@ -0,0 +1,54 @@ +{% load static %} + + + + + + Lyux - Landing + + + + + + + +
+
+ + +
+
made using Django❤️
+
Sign in:
+ Github + Twitter +
+ +
+
+

Lyux

+

+ Landing + Page +

+

+ This is my first landing Page +
+ I can do everything i want here. +

+
+
+ +
+ +
+

Connect with Github

+
+ +
+

Connect with Twitter

+
+ +
+ + + \ No newline at end of file diff --git a/djlearn/pages/tests.py b/djlearn/pages/tests.py new file mode 100644 index 0000000..7ce503c --- /dev/null +++ b/djlearn/pages/tests.py @@ -0,0 +1,3 @@ +from django.test import TestCase + +# Create your tests here. diff --git a/djlearn/pages/urls.py b/djlearn/pages/urls.py new file mode 100644 index 0000000..c486297 --- /dev/null +++ b/djlearn/pages/urls.py @@ -0,0 +1,6 @@ +from django.urls import path +from . import views + +urlpatterns = [ + path('', views.index, name='index'), +] \ No newline at end of file diff --git a/djlearn/pages/views.py b/djlearn/pages/views.py new file mode 100644 index 0000000..1ae8967 --- /dev/null +++ b/djlearn/pages/views.py @@ -0,0 +1,4 @@ +from django.shortcuts import render + +def index(request): + return render(request, 'pages/index.html')