diff --git a/_config.yml b/_config.yml index d6df31c..2f8c29a 100644 --- a/_config.yml +++ b/_config.yml @@ -9,7 +9,7 @@ title: Humanitarian Toolbox Developer Guide email: info@htbox.org description: > # this means to ignore newlines until "baseurl:" - Developer guidelines for working on HTbox projects. + Developer guidelines for working on HTbox projects baseurl: "" # the subpath of your site, e.g. /blog url: "http://htbox.org" # the base hostname & protocol for your site twitter_username: htbox diff --git a/_includes/footer.html b/_includes/footer.html index 72239f1..998613f 100644 --- a/_includes/footer.html +++ b/_includes/footer.html @@ -2,12 +2,12 @@ <div class="wrapper"> - <h2 class="footer-heading">{{ site.title }}</h2> - <div class="footer-col-wrapper"> - <div class="footer-col footer-col-1"> + + <div class="footer-col footer-col-4"> <ul class="contact-list"> - <li>{{ site.title }}</li> + <li class="footer-title">{{ site.title }}</li> + <li>{{ site.description }}</li> <li><a href="mailto:{{ site.email }}">{{ site.email }}</a></li> </ul> </div> @@ -18,7 +18,7 @@ <h2 class="footer-heading">{{ site.title }}</h2> <li> {% include icon-github.html username=site.github_username %} </li> - {% endif %} + {% endif %} {% if site.twitter_username %} <li> @@ -28,9 +28,6 @@ <h2 class="footer-heading">{{ site.title }}</h2> </ul> </div> - <div class="footer-col footer-col-3"> - <p>{{ site.description }}</p> - </div> </div> </div> diff --git a/about.md b/about.md index d0e6de5..7fda054 100644 --- a/about.md +++ b/about.md @@ -4,12 +4,9 @@ title: About permalink: /about/ --- -This is the base Jekyll theme. You can find out more info about customizing your Jekyll theme, as well as basic Jekyll usage documentation at [jekyllrb.com](http://jekyllrb.com/) +This developer guide is for Humanitarian Toolbox opensource projects on Github. -You can find the source code for the Jekyll new theme at: -{% include icon-github.html username="jglovier" %} / -[jekyll-new](https://github.com/jglovier/jekyll-new) +More information about Humanitarian Toolbox can be found at [htbox.org](http://www.htbox.org/) + +See all HTBox github projects at {% include icon-github.html username=site.github_username %} -You can find the source code for Jekyll at -{% include icon-github.html username="jekyll" %} / -[jekyll](https://github.com/jekyll/jekyll) diff --git a/css/main.scss b/css/main.scss index f2e566e..a02a5aa 100644 --- a/css/main.scss +++ b/css/main.scss @@ -9,6 +9,7 @@ $base-font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; $base-font-size: 16px; $base-font-weight: 400; +$bold-font-weight: 700; $small-font-size: $base-font-size * 0.875; $base-line-height: 1.5; @@ -43,6 +44,14 @@ $on-laptop: 800px; } } +.footer-title { + font-weight: $bold-font-weight; +} + +.footer-col-4 { + width: -webkit-calc(55% - (#{$spacing-unit} / 2)); + width: calc(55% - (#{$spacing-unit} / 2)); +} // Import partials from `sass_dir` (defaults to `_sass`)