Made migrations, added footer to base.html and modified index.html

parent 0cf3cd65
...@@ -5,6 +5,7 @@ body { ...@@ -5,6 +5,7 @@ body {
height: 100%; height: 100%;
font-size: 11pt; font-size: 11pt;
color: #3d3838; color: #3d3838;
background-color: black;
} }
.carousel-item img { .carousel-item img {
...@@ -65,14 +66,24 @@ nav { ...@@ -65,14 +66,24 @@ nav {
/* nav bar end */ /* nav bar end */
.footer{ .footer-basic{
background-color: black; background-color: black;
color: #f8edeb; color: #f8edeb;
display: flex; display: flex;
justify-content: center; justify-content: center;
} }
.footer p { flex: 0 1 800px; padding: 8px 24px;} .copyright {
flex: 0 1 800px;
padding: 8px 24px;
}
/* homepage about section */
.about-image {
display: flex;
height: 300px;
width: 200px;
}
/* homepage happening now */ /* homepage happening now */
...@@ -97,6 +108,7 @@ nav { ...@@ -97,6 +108,7 @@ nav {
background-color: #ffc2c2; background-color: #ffc2c2;
padding: 8px; padding: 8px;
border: 2px dotted black; border: 2px dotted black;
margin: 32px;
} }
.event { .event {
......
...@@ -50,8 +50,18 @@ ...@@ -50,8 +50,18 @@
{% block scripts %}{% endblock %} {% block scripts %}{% endblock %}
<div class="footer"> <div class="footer-basic">
<p>Website created by the OMENgineers </p> <footer>
<div class="social"><a href="#"><i class="icon ion-social-instagram"></i></a><a href="#"><i class="icon ion-social-snapchat"></i></a><a href="#"><i class="icon ion-social-twitter"></i></a><a href="#"><i class="icon ion-social-facebook"></i></a></div>
<ul class="list-inline">
<li class="list-inline-item"><a href="/">Home</a></li>
<li class="list-inline-item"><a href="#">Services</a></li>
<li class="list-inline-item"><a href="#">About</a></li>
<li class="list-inline-item"><a href="#">Terms</a></li>
<li class="list-inline-item"><a href="#">Privacy Policy</a></li>
</ul>
<p class="copyright">Omengineers © 2022</p>
</footer>
</div> </div>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script> <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
......
...@@ -40,7 +40,7 @@ ...@@ -40,7 +40,7 @@
<div class="col"> <div class="col">
<p>Boodle was founded by 4 amaing talented software engineers, who are college studyents based in Metro Manila who go to Ateneo de Manila University. </p> <p>Boodle was founded by 4 amaing talented software engineers, who are college studyents based in Metro Manila who go to Ateneo de Manila University. </p>
</div> </div>
<div class="col"> <div class="col about-image">
<img src="../static/media/dancinginthekitchen.jpg"> <img src="../static/media/dancinginthekitchen.jpg">
</div> </div>
</div> </div>
......
# Generated by Django 4.0.3 on 2022-03-12 07:26
from django.db import migrations, models
class Migration(migrations.Migration):
initial = True
dependencies = [
]
operations = [
migrations.CreateModel(
name='Auction',
fields=[
('auctionid', models.AutoField(primary_key=True, serialize=False)),
('title', models.CharField(max_length=255)),
('info', models.CharField(max_length=255)),
('auctionstart', models.DateTimeField()),
('auctionend', models.DateTimeField()),
],
options={
'db_table': 'auction',
'managed': False,
},
),
]
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