forked from pclubuiet/website
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
aboutus.html: add seperate page for aboutus
Add a new page for aboutus and made necessary change in urls and views. Closes pclubuiet#2
- Loading branch information
1 parent
0869972
commit b43159a
Showing
8 changed files
with
103 additions
and
21 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
@import url('https://fonts.googleapis.com/css?family=Tangerine&effect=shadow-multiple|3d-float'); | ||
.navbar-custom { | ||
background-color: #23527C; | ||
color: #fff; | ||
} | ||
|
||
.navbar-custom .navbar-nav>.active> a, | ||
.navbar-custom .navbar-nav>.active> a:focus, | ||
.navbar-custom .navbar-nav>.active> a:hover { | ||
border-radius: 10px 10px 0px 0px; | ||
background: #00ACC1; | ||
color: #23527C; | ||
} | ||
|
||
.navbar-brand { | ||
font-family: 'Tangerine',serif; | ||
color: #fff; | ||
} | ||
|
||
.navbar-header a.navbar-brand:hover { | ||
color: #00ACC1; | ||
} | ||
|
||
.navbar .nav > li > a { | ||
float: none; | ||
color: #EEE; | ||
|
||
} | ||
|
||
.navbar .nav > li > a:hover { | ||
float: none; | ||
color: #23527C; | ||
border-radius: 10px 10px 0px 0px; | ||
} | ||
|
||
.icon-bar { | ||
background-color: #fff; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
{% extends 'base.html' %} | ||
{% load staticfiles %} | ||
{% block styles %} | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Lobster+Two"> | ||
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Moda"> | ||
{% endblock %} | ||
{% block title %}Programming Club {% endblock %} | ||
{% block nav_home %}{% endblock %} | ||
{% block nav_aboutus %} class ='active' {% endblock %} | ||
{% block content %} | ||
<div class="container text-center"> | ||
<h1 style='font-family: Lobster Two; font-size: 5.2vw;'>About us</h1> | ||
<p id = 'aboutus' style='font-family: Moda; font-size: 1.8vw;'>Programming club is one of the biggest clubs of Panjab University. We aim and create a platform which allows students to gain assistance and mentorship to enhance their ability. Our aim is to propagate the enthusiasm for programming in the institute. We believe that every student should have an opportunity to learn how to code and we help them develop that passion for it.</p> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,4 @@ | |
{% block nav_home %}{% endblock %} | ||
{% block nav_resources %} | ||
class="active" | ||
{% endblock %} | ||
{% endblock %} |