feat: Add bulma and base for bulma styleguide
This commit is contained in:
parent
bbad63a460
commit
abce89c829
21551
src/fellchensammlung/static/fellchensammlung/css/bulma.css
vendored
Normal file
21551
src/fellchensammlung/static/fellchensammlung/css/bulma.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
3
src/fellchensammlung/static/fellchensammlung/css/bulma.min.css
vendored
Normal file
3
src/fellchensammlung/static/fellchensammlung/css/bulma.min.css
vendored
Normal file
File diff suppressed because one or more lines are too long
@ -0,0 +1,31 @@
|
|||||||
|
{% load custom_tags %}
|
||||||
|
{% load i18n %}
|
||||||
|
{% load static %}
|
||||||
|
{% get_current_language as LANGUAGE_CODE%}
|
||||||
|
<!DOCTYPE html>
|
||||||
|
<html lang="{{ LANGUAGE_CODE }}">
|
||||||
|
<head>
|
||||||
|
{% block title %}{% endblock %}
|
||||||
|
<meta charset="utf-8">
|
||||||
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<meta name="description" content="{% translate "Farbratten aus dem Tierschutz finden und adoptieren" %}">
|
||||||
|
<!-- Add additional CSS in static file -->
|
||||||
|
<link rel="stylesheet" href="{% static 'fellchensammlung/css/bulma-styles.css' %}">
|
||||||
|
<link rel="stylesheet" href="{% static 'fellchensammlung/css/bulma/css/bulma.css' %}">
|
||||||
|
<link href="{% static 'fontawesomefree/css/fontawesome.css' %}" rel="stylesheet" type="text/css">
|
||||||
|
<link href="{% static 'fontawesomefree/css/brands.css' %}" rel="stylesheet" type="text/css">
|
||||||
|
<link href="{% static 'fontawesomefree/css/solid.css' %}" rel="stylesheet" type="text/css">
|
||||||
|
|
||||||
|
<link rel="apple-touch-icon" sizes="180x180" href="{% static 'fellchensammlung/favicon/apple-touch-icon.png' %}">
|
||||||
|
<link rel="icon" type="image/png" sizes="32x32" href="{% static 'fellchensammlung/favicon/favicon-32x32.png' %}">
|
||||||
|
<link rel="icon" type="image/png" sizes="16x16" href="{% static 'fellchensammlung/favicon/favicon-16x16.png' %}">
|
||||||
|
{% get_oxitraffic_script_if_enabled %}
|
||||||
|
</head>
|
||||||
|
<body>
|
||||||
|
{% block header %}
|
||||||
|
{% endblock %}
|
||||||
|
<div>
|
||||||
|
{% block content %}{% endblock %}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
|
</html>
|
@ -0,0 +1,17 @@
|
|||||||
|
{% extends "fellchensammlung/base_bulma.html" %}
|
||||||
|
{% load i18n %}
|
||||||
|
{% load static %}
|
||||||
|
{% block title %}<title>{% translate "Styleguide für Bulma" %}</title>{% endblock %}
|
||||||
|
|
||||||
|
{% block content %}
|
||||||
|
<section class="section">
|
||||||
|
<div class="container">
|
||||||
|
<h1 class="title">
|
||||||
|
Hello World
|
||||||
|
</h1>
|
||||||
|
<p class="subtitle">
|
||||||
|
Notfellchen bald mit <strong>Bulma</strong>?
|
||||||
|
</p>
|
||||||
|
</div>
|
||||||
|
</section>
|
||||||
|
{% endblock %}
|
@ -113,5 +113,6 @@ urlpatterns = [
|
|||||||
###############
|
###############
|
||||||
path("sitemap.xml", sitemap, {"sitemaps": sitemaps}, name="django.contrib.sitemaps.views.sitemap"),
|
path("sitemap.xml", sitemap, {"sitemaps": sitemaps}, name="django.contrib.sitemaps.views.sitemap"),
|
||||||
path("styleguide", views.styleguide, name="styleguide"),
|
path("styleguide", views.styleguide, name="styleguide"),
|
||||||
|
path("styleguide-bulma", views.styleguide_bulma, name="styleguide-bulma"),
|
||||||
|
|
||||||
]
|
]
|
||||||
|
@ -639,10 +639,14 @@ def export_own_profile(request):
|
|||||||
|
|
||||||
|
|
||||||
def styleguide(request):
|
def styleguide(request):
|
||||||
|
|
||||||
context = {"geocoding_api_url": settings.GEOCODING_API_URL, }
|
context = {"geocoding_api_url": settings.GEOCODING_API_URL, }
|
||||||
return render(request, 'fellchensammlung/styleguide.html', context=context)
|
return render(request, 'fellchensammlung/styleguide.html', context=context)
|
||||||
|
|
||||||
|
|
||||||
|
def styleguide_bulma(request):
|
||||||
|
return render(request, 'fellchensammlung/styleguide-bulma.html')
|
||||||
|
|
||||||
|
|
||||||
@login_required
|
@login_required
|
||||||
def rescue_organization_check(request):
|
def rescue_organization_check(request):
|
||||||
if request.method == "POST":
|
if request.method == "POST":
|
||||||
@ -655,5 +659,5 @@ def rescue_organization_check(request):
|
|||||||
rescue_org.set_checked()
|
rescue_org.set_checked()
|
||||||
|
|
||||||
last_checked_rescue_orgs = RescueOrganization.objects.order_by("last_checked")
|
last_checked_rescue_orgs = RescueOrganization.objects.order_by("last_checked")
|
||||||
context = {"rescue_orgs": last_checked_rescue_orgs,}
|
context = {"rescue_orgs": last_checked_rescue_orgs, }
|
||||||
return render(request, 'fellchensammlung/rescue-organization-check.html', context=context)
|
return render(request, 'fellchensammlung/rescue-organization-check.html', context=context)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user