Commit f2498f3d authored by James Esguerra's avatar James Esguerra

Added style tags to all html templates

parent d8f170dd
body {
font-family: Georgia;
}
a {
text-decoration: none;
}
h1 {
text-align: center;
}
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
{% block title %} Your Bujo {% endblock %} {% block title %} Your Bujo {% endblock %}
{% block styles %}
<link rel='stylesheet' type='text/css' href="{% static 'css/styles.css' %}">
{% endblock %}
{% block header %} Your Bullet Journal {% endblock %} {% block header %} Your Bullet Journal {% endblock %}
{% block content %} {% block content %}
......
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
{% block title %} Key {% endblock %} {% block title %} Key {% endblock %}
{% block styles %}
<link rel='stylesheet' type='text/css' href="{% static 'css/styles.css' %}">
{% endblock %}
{% block header %} Key {% endblock %} {% block header %} Key {% endblock %}
{% block content %} {% block content %}
......
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
{% block title %} Profile {% endblock %} {% block title %} Profile {% endblock %}
{% block styles %}
<link rel='stylesheet' type='text/css' href="{% static 'css/styles.css' %}">
{% endblock %}
{% block header %} Profile {% endblock %} {% block header %} Profile {% endblock %}
{% block content %} {% block content %}
......
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
{% block title %} This Week {% endblock %} {% block title %} This Week {% endblock %}
{% block styles %}
<link rel='stylesheet' type='text/css' href="{% static 'css/styles.css' %}">
{% endblock %}
{% block header %} This Week {% endblock %} {% block header %} This Week {% endblock %}
{% block content %} {% block content %}
......
...@@ -2,6 +2,10 @@ ...@@ -2,6 +2,10 @@
{% block title %} Today {% endblock %} {% block title %} Today {% endblock %}
{% block styles %}
<link rel='stylesheet' type='text/css' href="{% static 'css/styles.css' %}">
{% endblock %}
{% block header %} Today {% endblock %} {% block header %} Today {% endblock %}
{% block content %} {% block content %}
......
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