/")
-def council(council=None):
+def read_council(council=None):
if council in page_titles.keys():
title = page_titles[council]
diff --git a/static/logo.png b/canon_law/static/logo.png
similarity index 100%
rename from static/logo.png
rename to canon_law/static/logo.png
diff --git a/static/style.css b/canon_law/static/style.css
similarity index 89%
rename from static/style.css
rename to canon_law/static/style.css
index 5ae4032..79b9ea8 100644
--- a/static/style.css
+++ b/canon_law/static/style.css
@@ -75,9 +75,9 @@ input { padding: 10px; }
header .dropdown-content {
display: none;
position: absolute;
- background-color: #f9f9f9;
+ background-color: #e0e0e0;
min-width: 160px;
- box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
+ box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
z-index: 1;
}
@@ -90,19 +90,16 @@ header .dropdown-content a {
}
header .dropdown-content a:hover { color: black !important; }
-header .dropdown-content a:hover { background-color: #f1f1f1; }
+header .dropdown-content a:hover { background-color: #c8c8c8; }
header .dropdown:hover .dropdown-content { display: block; }
header .separator:hover {
- background-color: #f9f9f9 !important;
+ background-color: #e0e0e0 !important;
cursor: default;
}
.main {
- margin-top: 10px;
- margin-left: 25%;
- margin-right: 25%;
- margin-bottom: 50px;
+ margin: 10px 25% 50px;
/* hacky way of making the footer stick to the bottom */
/* only because i don't think it appropriate to add a surrounding div to everything */
@@ -136,12 +133,12 @@ table {
}
table, th, td {
- border: 1px solid #e0e0e0;
+ border: 1px solid #c8c8c8;
border-collapse: collapse;
}
th, td { padding: 15px; }
-tr:nth-child(even) { background-color: #fcfcfc; }
+tr:nth-child(even) { background-color: #e0e0e0; }
small { font-size: 11px; }
diff --git a/templates/about.html b/canon_law/templates/about.html
similarity index 86%
rename from templates/about.html
rename to canon_law/templates/about.html
index 404e3ff..0243973 100644
--- a/templates/about.html
+++ b/canon_law/templates/about.html
@@ -3,10 +3,10 @@
{% block title %}about{% endblock %}
{% block main %}
-
+
about
- canonlaw.vyprxyz is a open-source endeavor by Elliott Pardee to provide a way to reference canon law quickly.
+ canonlaw.vypr.xyz is a open-source endeavor by Elliott Pardee to provide a way to reference canon law quickly.
diff --git a/templates/api.html b/canon_law/templates/api.html
similarity index 95%
rename from templates/api.html
rename to canon_law/templates/api.html
index cfc1eab..9dc2974 100644
--- a/templates/api.html
+++ b/canon_law/templates/api.html
@@ -3,7 +3,7 @@
{% block title %}api{% endblock %}
{% block main %}
-
+
coming soon
This page will be the future documentation of our API, but it isn't quite ready yet.
diff --git a/templates/base.html b/canon_law/templates/base.html
similarity index 71%
rename from templates/base.html
rename to canon_law/templates/base.html
index 1b2bb62..032b4ab 100644
--- a/templates/base.html
+++ b/canon_law/templates/base.html
@@ -29,16 +29,16 @@ Sometimes a man must look for nothing to find everything.
- home
- - canons of the apostles
+ - canons of the apostles
-
ecumenical councils
diff --git a/templates/council.html b/canon_law/templates/council.html
similarity index 96%
rename from templates/council.html
rename to canon_law/templates/council.html
index b01c685..581c4c2 100644
--- a/templates/council.html
+++ b/canon_law/templates/council.html
@@ -3,7 +3,7 @@
{% block title %}{{ title }}{% endblock %}
{% block main %}
-
+
{{ title }}
{% if not obj.no_canons %}
{% autoescape false %}
diff --git a/templates/disclaimer.html b/canon_law/templates/disclaimer.html
similarity index 82%
rename from templates/disclaimer.html
rename to canon_law/templates/disclaimer.html
index 255d1d9..e0db171 100644
--- a/templates/disclaimer.html
+++ b/canon_law/templates/disclaimer.html
@@ -3,7 +3,7 @@
{% block title %}disclaimer{% endblock %}
{% block main %}
-
+
disclaimer
canonlaw.vypr.xyz is not officially endorsed by any canonical Orthodox body or member of clergy and is not meant
@@ -17,6 +17,11 @@
+ canonlaw.vypr.xyz is a service that is provided free-of-charge. canonlaw.vypr.xyz is a non-profit, educational
+ service and receives no form of donations or income.
+
+
+
If you have questions, concerns, or feedback about this website or would simply like to contact us, email me@vypr.xyz
with the subject prefixed with "canonlaw -". Your email will be answered promptly.
diff --git a/templates/index.html b/canon_law/templates/index.html
similarity index 100%
rename from templates/index.html
rename to canon_law/templates/index.html
diff --git a/templates/search.html b/canon_law/templates/search.html
similarity index 100%
rename from templates/search.html
rename to canon_law/templates/search.html
diff --git a/templates/unknown_council.html b/canon_law/templates/unknown_council.html
similarity index 100%
rename from templates/unknown_council.html
rename to canon_law/templates/unknown_council.html