diff --git a/News-Aggregator/NewsAggregator/__pycache__/__init__.cpython-38.pyc b/News-Aggregator/NewsAggregator/__pycache__/__init__.cpython-38.pyc
deleted file mode 100644
index 18f4fdd..0000000
Binary files a/News-Aggregator/NewsAggregator/__pycache__/__init__.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/NewsAggregator/__pycache__/settings.cpython-38.pyc b/News-Aggregator/NewsAggregator/__pycache__/settings.cpython-38.pyc
deleted file mode 100644
index e79b1bd..0000000
Binary files a/News-Aggregator/NewsAggregator/__pycache__/settings.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/NewsAggregator/__pycache__/urls.cpython-38.pyc b/News-Aggregator/NewsAggregator/__pycache__/urls.cpython-38.pyc
deleted file mode 100644
index 3ef7c64..0000000
Binary files a/News-Aggregator/NewsAggregator/__pycache__/urls.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/NewsAggregator/__pycache__/wsgi.cpython-38.pyc b/News-Aggregator/NewsAggregator/__pycache__/wsgi.cpython-38.pyc
deleted file mode 100644
index 806a39f..0000000
Binary files a/News-Aggregator/NewsAggregator/__pycache__/wsgi.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/NewsAggregator/settings.py b/News-Aggregator/NewsAggregator/settings.py
index 340d9ce..11ea101 100644
--- a/News-Aggregator/NewsAggregator/settings.py
+++ b/News-Aggregator/NewsAggregator/settings.py
@@ -120,3 +120,4 @@
# https://docs.djangoproject.com/en/3.0/howto/static-files/
STATIC_URL = '/static/'
+STATICFILES_DIRS = [BASE_DIR +'/'+ 'static']
\ No newline at end of file
diff --git a/News-Aggregator/db.sqlite3 b/News-Aggregator/db.sqlite3
index 8d63a50..9462481 100644
Binary files a/News-Aggregator/db.sqlite3 and b/News-Aggregator/db.sqlite3 differ
diff --git a/News-Aggregator/news/__pycache__/__init__.cpython-38.pyc b/News-Aggregator/news/__pycache__/__init__.cpython-38.pyc
deleted file mode 100644
index ef55261..0000000
Binary files a/News-Aggregator/news/__pycache__/__init__.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/news/__pycache__/admin.cpython-38.pyc b/News-Aggregator/news/__pycache__/admin.cpython-38.pyc
deleted file mode 100644
index b2cca69..0000000
Binary files a/News-Aggregator/news/__pycache__/admin.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/news/__pycache__/models.cpython-38.pyc b/News-Aggregator/news/__pycache__/models.cpython-38.pyc
deleted file mode 100644
index ef79b7a..0000000
Binary files a/News-Aggregator/news/__pycache__/models.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/news/__pycache__/urls.cpython-38.pyc b/News-Aggregator/news/__pycache__/urls.cpython-38.pyc
deleted file mode 100644
index e5d3b5b..0000000
Binary files a/News-Aggregator/news/__pycache__/urls.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/news/__pycache__/views.cpython-38.pyc b/News-Aggregator/news/__pycache__/views.cpython-38.pyc
deleted file mode 100644
index f6e29db..0000000
Binary files a/News-Aggregator/news/__pycache__/views.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/news/migrations/0001_initial.py b/News-Aggregator/news/migrations/0001_initial.py
index 288ce05..499b2ed 100644
--- a/News-Aggregator/news/migrations/0001_initial.py
+++ b/News-Aggregator/news/migrations/0001_initial.py
@@ -18,6 +18,7 @@ class Migration(migrations.Migration):
('title', models.CharField(max_length=200)),
('image', models.URLField(blank=True, null=True)),
('url', models.TextField()),
+ ('date', models.TextField()),
],
),
]
diff --git a/News-Aggregator/news/migrations/__pycache__/0001_initial.cpython-38.pyc b/News-Aggregator/news/migrations/__pycache__/0001_initial.cpython-38.pyc
deleted file mode 100644
index 2d6f22c..0000000
Binary files a/News-Aggregator/news/migrations/__pycache__/0001_initial.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/news/migrations/__pycache__/__init__.cpython-38.pyc b/News-Aggregator/news/migrations/__pycache__/__init__.cpython-38.pyc
deleted file mode 100644
index 17b50e6..0000000
Binary files a/News-Aggregator/news/migrations/__pycache__/__init__.cpython-38.pyc and /dev/null differ
diff --git a/News-Aggregator/news/models.py b/News-Aggregator/news/models.py
index 3881e3c..ebdb76d 100644
--- a/News-Aggregator/news/models.py
+++ b/News-Aggregator/news/models.py
@@ -6,5 +6,6 @@ class Headline(models.Model):
title = models.CharField(max_length=200)
image = models.URLField(null=True, blank=True)
url = models.TextField()
+ date = models.TextField()
def __str__(self):
return self.title
\ No newline at end of file
diff --git a/News-Aggregator/news/static/news/static/favicon.ico b/News-Aggregator/news/static/news/static/favicon.ico
new file mode 100644
index 0000000..358fde4
Binary files /dev/null and b/News-Aggregator/news/static/news/static/favicon.ico differ
diff --git a/News-Aggregator/news/static/news/static/main.css b/News-Aggregator/news/static/news/static/main.css
new file mode 100644
index 0000000..08663a5
--- /dev/null
+++ b/News-Aggregator/news/static/news/static/main.css
@@ -0,0 +1,40 @@
+:root {
+ --jumbotron-padding-y: 3rem;
+ }
+
+ .jumbotron {
+ padding-top: var(--jumbotron-padding-y);
+ padding-bottom: var(--jumbotron-padding-y);
+ margin-bottom: 0;
+ background-color: #fff;
+ }
+ @media (min-width: 768px) {
+ .jumbotron {
+ padding-top: calc(var(--jumbotron-padding-y) * 2);
+ padding-bottom: calc(var(--jumbotron-padding-y) * 2);
+ }
+ }
+
+ .jumbotron p:last-child {
+ margin-bottom: 0;
+ }
+
+ .jumbotron-heading {
+ font-weight: 300;
+ }
+
+ .jumbotron .container {
+ max-width: 40rem;
+ }
+
+ footer {
+ padding-top: 3rem;
+ padding-bottom: 3rem;
+ }
+
+ footer p {
+ margin-bottom: .25rem;
+ }
+
+ .box-shadow { box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05); }
+
\ No newline at end of file
diff --git a/News-Aggregator/news/templates/news/home.html b/News-Aggregator/news/templates/news/home.html
index af8b530..6eb1e65 100644
--- a/News-Aggregator/news/templates/news/home.html
+++ b/News-Aggregator/news/templates/news/home.html
@@ -1,34 +1,107 @@
-
+
-
-
+
+
+
+ News Aggregator Home Page
+
+
+
+ {% load static %}
+
+
-
-