diff --git a/pages/static/pages/css/styles.css b/pages/static/pages/css/styles.css index 8a96025..d6b5148 100644 --- a/pages/static/pages/css/styles.css +++ b/pages/static/pages/css/styles.css @@ -8,7 +8,7 @@ html { overflow-x: hidden; } -.person_cont { +.person { text-align: center; margin: 20px; } @@ -26,10 +26,6 @@ html { box-shadow: 12px 12px rgb(0, 0, 0, 0.1), -12px -12px rgb(0, 0, 0, 0.3); } -.council h2{ - text-align: center; -} - .details p a { font-size: 25px; } diff --git a/pages/templates/pages/base.html b/pages/templates/pages/base.html index 79e95bd..b98cdf7 100644 --- a/pages/templates/pages/base.html +++ b/pages/templates/pages/base.html @@ -41,7 +41,7 @@ About us Our Meetings - Contact Us + Contact Us diff --git a/pages/templates/pages/contact.html b/pages/templates/pages/contact.html new file mode 100644 index 0000000..c04eddc --- /dev/null +++ b/pages/templates/pages/contact.html @@ -0,0 +1,11 @@ +{% extends 'pages/base.html' %} +{% load static %} +{% block title %}Council{% endblock title %} +{% block css %} + +{% endblock css %} +{% block content %} +
+

Contact Us!

+
+{% endblock %} \ No newline at end of file diff --git a/pages/templates/pages/council.html b/pages/templates/pages/council.html index a5e5efe..90e3109 100644 --- a/pages/templates/pages/council.html +++ b/pages/templates/pages/council.html @@ -6,82 +6,95 @@ {% endblock css %} {% block content %}
-

The Class Council

-

We are here to serve you.

+

The Class Council

+

We are here to serve you.


-
+

Our Mission

Some description of what we do


-

Our Team

- -
- -
-

The President

-

Vinay Ayala

- “Live life to the fullest.” +

Our Team

+
+
+
+ +
+

The Vice President

+

Praneeth Chinmay Bhandaru

+ “You don't need to be a potato to be good in life, all you need to do is trust yourself.” +
+
+
+
+
+ +
+

The President

+

Vinay Ayala

+ “Live life to the fullest.” +
+
+
+
+
+ +
+

The Treasurer

+

Grace Guan

+ “I'm excited to serve again as a member of your class clowncil!” + +
+
- -
- -
-

The Vice President

-

Praneeth Chinmay Bhandaru

- “You don't need to be a potato to be good in life, all you need to do is trust yourself.” +
+
+
+ +
+

The Secretary

+

Christina Han

+ “Needs a Quote” + +
+
+
+
+
+ +
+

Senator

+

Rushil Umaretiya

+ “Just failed his chem test, again.” +
+
+
+
+
+ +
+

Senator

+

Yulee Kang

+ “Is a Cutie :)” + +
+
- -
- -
-

The Treasurer

-

Grace Guan

- “I'm excited to serve again as a member of your class clowncil!” - -
-
- -
- -
-

The Secretary

-

Christina Han

- “Needs a Quote” - -
-
- -
- -
-

Senator

-

Yulee Kang

- “Is a Cutie :)” - -
-
- -
- -
-

Senator

-

Rushil Umaretiya

- “Just failed his chem test, again.” -
-
- -
- -
-

The Historian

-

Katelyn Chen

- “🅱️🅾️📈🎋” +
+
+
+ +
+

The Historian

+

Katelyn Chen

+ “🅱️🅾️📈🎋” +
+
diff --git a/pages/urls.py b/pages/urls.py index 05862fe..4d5450e 100644 --- a/pages/urls.py +++ b/pages/urls.py @@ -3,6 +3,7 @@ from . import views urlpatterns = [ path('', views.index, name="index"), + path('contact/', views.contact, name='contact'), path('council/', views.council, name='council'), - path('events/', views.events, name='events') + path('events/', views.events, name='events'), ] diff --git a/pages/views.py b/pages/views.py index 5002778..e86a131 100644 --- a/pages/views.py +++ b/pages/views.py @@ -19,3 +19,6 @@ def council(request): def events(request): return render(request, 'pages/events.html') + +def contact(request): + return render (request, 'pages/contact.html') \ No newline at end of file