diff --git a/static/src/scss/homepage.scss b/static/src/scss/homepage.scss index cdfca07..52ca9e8 100644 --- a/static/src/scss/homepage.scss +++ b/static/src/scss/homepage.scss @@ -1,24 +1,17 @@ .homepage-jumbotron { - @extend .valign-wrapper, .center-align; - - justify-content: center; - flex-direction: column; + @extend .center-align; color: white; - @media #{$large-and-up} { - height: calc(70vh - #{$navbar-height}); - } - - @media #{$medium-and-down} { - height: calc(100vh - #{$navbar-height}); + h1 { + margin-top: 0; } } -.homepage-recent-content { - h2 { - @extend .center-align; +.homepageview > main { + display: flex; + justify-content: center; + align-items: center; - margin-bottom: $element-bottom-margin * 2; - } + background-image: url('../img/header.jpg'); } diff --git a/templates/card-list-item.html b/templates/card-list-item.html deleted file mode 100644 index bcf8e3e..0000000 --- a/templates/card-list-item.html +++ /dev/null @@ -1,13 +0,0 @@ -
-
-
-

- I am a very simple card. I am good at containing small bits of information. - I am convenient because I require little markup to use effectively. -

-
-
- Read More -
-
-
diff --git a/templates/homepage.html b/templates/homepage.html index 4ecb474..e178ab0 100644 --- a/templates/homepage.html +++ b/templates/homepage.html @@ -1,4 +1,3 @@ - {% extends "base.html" %} {% load static %} @@ -6,28 +5,8 @@ {% block title %}Homepage{% endblock %} {% block main %} -
-
- -
- +

Jake Howard

Part Developer. Part SysAdmin. Part InfoSec. All Nerd!

- -
-

Recent Content

- - {% include "card-list-item.html" %} -
{% endblock%} - - -{% block extrascripts %} - -{% endblock %}