Skip to content

Commit bd970e7

Browse files
committed
Just put up a stupid simple landing page.
1 parent a39d2e3 commit bd970e7

File tree

5 files changed

+37
-9
lines changed

5 files changed

+37
-9
lines changed

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: "Matt Wondra’s Blog"
1+
name: "Matt Wondra"
22
url: "http://mattwondra.com"
33
description: "Thoughts on web development, design process, and remote work by Matt Wondra."
44
author: "Matt Wondra"

_layouts/default.html

+7-7
Original file line numberDiff line numberDiff line change
@@ -16,30 +16,30 @@
1616
</head>
1717
<body>
1818

19-
<header role="banner">
19+
<!-- <header role="banner">
2020
<div class="u-responsive-wrapper">
2121
<a href="/">Matt Wondra</a>
2222
{% if page.mattwondra %}{{ page.mattwondra }}{% else %}{{ site.defaultFlavorText }}{% endif %}
2323
</div>
24-
</header>
24+
</header> -->
2525

2626
<main role="main">
2727
{{ content }}
2828
</main>
2929

3030
<footer role="contentinfo" class="u-bg-gray">
3131
<section class="u-responsive-wrapper">
32-
<h2 class="u-section-heading">Choose your own adventure</h2>
33-
<nav class="PrimaryNav">
32+
<h2 class="u-section-heading">Elsewhere on the web</h2>
33+
<!-- <nav class="PrimaryNav">
3434
<a href="/">Home</a>
3535
<a href="/about/">About</a>
3636
<a href="/speaking/">Speaking</a>
37-
</nav>
38-
<div class="SecondaryNav">
37+
</nav> -->
38+
<div class="PrimaryNav">
3939
<a href="https://github.com/mattwondra" class="u-link-muted">Github</a>
4040
<a href="https://twitter.com/mattwondra" class="u-link-muted">Twitter</a>
4141
<a href="http://instagram.com/mattwondra" class="u-link-muted">Instagram</a>
42-
<a href="{{site.rss_path}}{{site.rss_name}}" class="u-link-muted">RSS</a>
42+
<!-- <a href="{{site.rss_path}}{{site.rss_name}}" class="u-link-muted">RSS</a> -->
4343
</div>
4444

4545
<small class="SiteCopyright">

assets/_sass/base.scss

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
html {
22
font-size: 50%;
3+
background: #f3f3f3;
34
@media (min-width: $mediaMedium) {
45
font-size: 56.25%;
56
}
@@ -12,6 +13,11 @@ body {
1213
font: #{$fontSizeNormal}/1.4 "interface", "Helvetica Neue", Arial, Helvetica, sans-serif;
1314
color: $colorText;
1415
font-weight: $fontWeightNormal;
16+
background: #fff;
17+
border-top: 2rem solid $colorBrand;
18+
@media (min-width: $mediaMedium) {
19+
padding-top: 3rem;
20+
}
1521
}
1622

1723
h1, h2, h3, h4, h5, h6 {
@@ -39,7 +45,7 @@ strong, b {
3945

4046

4147
.u-typeset {
42-
p, blockquote, h2, h3 {
48+
p, blockquote, h1, h2, h3 {
4349
@extend %responsive-wrapper;
4450
margin-bottom: 3rem;
4551
}

assets/_sass/page.scss

+22
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,28 @@
22
@extend %responsive-wrapper;
33
}
44

5+
.Page__heading {
6+
@extend %responsive-wrapper;
7+
margin: 3rem auto;
8+
p, h1 {
9+
padding: 0;
10+
margin: 0 0 1.5rem;
11+
}
12+
}
13+
14+
.Page__lead-image {
15+
display: block;
16+
margin: 3rem auto;
17+
border-radius: 50%;
18+
overflow: hidden;
19+
max-width: 33%;
20+
21+
@media (min-width: $mediaMedium) {
22+
margin: 0 0 0 3rem;
23+
float: right;
24+
}
25+
}
26+
527
.Page__title {
628
@include largeHeading;
729
margin-bottom: 3rem;

index.html old.index.html

File renamed without changes.

0 commit comments

Comments
 (0)