diff options
-rw-r--r-- | config.toml | 2 | ||||
-rw-r--r-- | content/about.md | 2 | ||||
-rw-r--r-- | layouts/partials/layout.html | 2 | ||||
-rw-r--r-- | static/css/style.css | 3 |
4 files changed, 5 insertions, 4 deletions
diff --git a/config.toml b/config.toml index 83ad31c..11115b7 100644 --- a/config.toml +++ b/config.toml @@ -8,7 +8,7 @@ disableSitemap = true [params] homeurl = "/" -tagline = "georgia tech alum, programmerdude" +tagline = "CS grad student and at-risk youth" description = "Austin Adams's personal website and blog" [markup.goldmark.renderer] diff --git a/content/about.md b/content/about.md index 4c39ef4..a64686c 100644 --- a/content/about.md +++ b/content/about.md @@ -13,7 +13,7 @@ p { img { border: 1px solid #333; border-radius: 4px; - max-width: 128px; + max-width: 150px; display: block; margin: 0 auto; } diff --git a/layouts/partials/layout.html b/layouts/partials/layout.html index 3f4163d..69e5f3d 100644 --- a/layouts/partials/layout.html +++ b/layouts/partials/layout.html @@ -34,7 +34,7 @@ <body> <div id="container"> <header> - <h1 id="name"><a href="{{ .Site.BaseURL }}">Austin Adams</a></h1> + <h1 id="name"><a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a></h1> {{ if $isBlog }} <div id="tagline"><a href="/blog/">The Blog</a></div> {{ else }} diff --git a/static/css/style.css b/static/css/style.css index 099b2eb..d3a6c0b 100644 --- a/static/css/style.css +++ b/static/css/style.css @@ -37,9 +37,10 @@ header { #tagline { min-height: 20px; - margin-top: 4px; + margin: 4px auto 0 auto; font-size: 14px; color: #444; + max-width: 300px; } #tagline a { |