add changeable title in header
This commit is contained in:
@@ -1,5 +1,7 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}FET: Login{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<!-- Main Content -->
|
||||
<main class="container mx-auto w-full px-4 my-8 flex-grow flex flex-col">
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
<meta charset="UTF-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>FET: Startseite</title>
|
||||
<title>{% block title %}FET: Startseite{% endblock %}</title>
|
||||
|
||||
<meta name="author" content="Fachschaft Elektrotechnik (FET)">
|
||||
<meta name="description" content="Die Fachschaft Elektrotechnik besteht aus ET Studierenden, die sich um die Anliegen der Studenten und Studentinnen kümmern.">
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}FET: Blackboard{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<!-- Main Content -->
|
||||
<main class="container mx-auto w-full px-4 mt-8 flex-1">
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}FET: {{ flatpage.title }}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<!-- Main Content -->
|
||||
<main class="container mx-auto w-full px-4 my-8 flex-1">
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{% extends 'members/index.html' %}
|
||||
|
||||
{% block title %}FET: {{ active_job_group.name }}{% endblock %}
|
||||
|
||||
{% block jobs_content %}
|
||||
<div class="db-page-content">
|
||||
<h2>{{ active_job_group.name }}</h2>
|
||||
|
||||
@@ -1,6 +1,8 @@
|
||||
{% extends 'members/index.html' %}
|
||||
{% load softhyphen_tags %}
|
||||
|
||||
{% block title %}FET: {{ member.firstname }} {{ member.surname }}{% endblock %}
|
||||
|
||||
{% block extraheader %}
|
||||
<meta content="{{member.image.url}}" property="og:image">
|
||||
<meta content="{{ member.firstname }}" property="og:profile:first_name">
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{% extends 'members/index.html' %}
|
||||
|
||||
{% block title %}FET: Fachschaft{% endblock %}
|
||||
|
||||
{% block members_content %}
|
||||
{% if fs_info %}
|
||||
<div class="db-page-content">
|
||||
|
||||
@@ -2,6 +2,8 @@
|
||||
|
||||
{% load post_helpers %}
|
||||
|
||||
{% block title %}FET: News{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<!-- Main Content -->
|
||||
<main class="container mx-auto w-full px-4 my-8 flex-1">
|
||||
|
||||
@@ -3,6 +3,8 @@
|
||||
{% load post_helpers %}
|
||||
{% load admin_urls %}
|
||||
|
||||
{% block title %}FET: News{% endblock %}
|
||||
|
||||
{% block extraheader %}
|
||||
<meta content="{{ post.imageurl }}" property="og:image">
|
||||
<meta content="{{ post.title }}" property="og:title">
|
||||
|
||||
@@ -1,5 +1,7 @@
|
||||
{% extends 'base.html' %}
|
||||
|
||||
{% block title %}FET: News{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<!-- Main Content -->
|
||||
<main class="container mx-auto w-full px-4 my-8 flex-1">
|
||||
|
||||
Reference in New Issue
Block a user