Commit 640ee469 authored by Vaughn Fajardo's avatar Vaughn Fajardo

feat: add base.html and style.css for each app

parent 49a64f74
{% load static %}
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css"
href="{% static 'announcements/style.css' %}">
<title>{% block page-title %}{% endblock %}</title>
</head>
<body>
{% block content %}
{% endblock %}
</body>
</html>
\ No newline at end of file
{% extends "base.html" %}
{% extends "announcements/base.html" %}
{% block page-title %}Announcements Page{% endblock %}
......
{% extends "base.html" %}
{% extends "announcements/base.html" %}
{% block page-title %}Announcements Page{% endblock %}
......
p{
color: white;
font-weight: bold;
font-family: Helvetica;
font-size:25px;
}
h1 {
position: sticky;
text-align: left;
color: white;
font-size: 55px;
font-family: Helvetica;
}
body {
background-image: url("/static/bg.png");
background-repeat: no-repeat;
background-size: cover;
background-position: center;
background-attachment: fixed;
font-family: Helvetica;
}
a{
color: white;
font-family: Helvetica;
font-weight: bold;
}
ol {
font-size:35px;
font-family: Helvetica;
color:white;
font-weight: bold;
}
a:link {
text-decoration: none;
}
img{
position: relative;
top: 150px;
}
\ No newline at end of file
......@@ -6,7 +6,7 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1">
<link rel="stylesheet" type="text/css"
href="{% static 'style.css' %}">
href="{% static 'forum/style.css' %}">
<title>{% block page-title %}{% endblock %}</title>
</head>
<body>
......
{% extends "base.html" %}
{% extends "forum/base.html" %}
{% block page-title %}Details{% endblock %}
......
{% extends "base.html" %}
{% extends "forum/base.html" %}
{% block page-title %}Forum Posts{% endblock %}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment