Skip to content

Commit

Permalink
Add hr in photo section
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBiggerGuy committed Sep 15, 2018
1 parent a5c3634 commit 4ed49b7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion site/assets/scss/bootstrap.scss
Expand Up @@ -5,7 +5,8 @@
$body-bg: color("gray-dark"); $body-bg: color("gray-dark");
$body-color: color("white"); /* TODO: Use color("gray-light") to tone down some areas */ $body-color: color("white"); /* TODO: Use color("gray-light") to tone down some areas */


$border-color: color("gray"); $border-color: gray("700");
$hr-border-color: gray("500");


/* Defaults: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default; */ /* Defaults: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default; */
$font-family-sans-serif: Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default; $font-family-sans-serif: Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji" !default;
Expand Down
3 changes: 2 additions & 1 deletion site/layouts/section/photography.html
Expand Up @@ -12,7 +12,8 @@ <h1>{{ .Title }}</h1>
<div class="container"> <div class="container">
{{ range .Pages.GroupByDate "2006" }} {{ range .Pages.GroupByDate "2006" }}
<div class="row"> <div class="row">
<h3>{{ .Key }}</h3> <h3 class="mb-0">{{ .Key }}</h3>
<hr class="w-100 mt-0">
<div class="card-columns"> <div class="card-columns">
{{ range $page := .Pages.ByDate.Reverse }} {{ range $page := .Pages.ByDate.Reverse }}
{{ $photo := index $page.Params.Photos 0 }} {{ $photo := index $page.Params.Photos 0 }}
Expand Down

0 comments on commit 4ed49b7

Please sign in to comment.