2020-05-12 11:15:32 -05:00
---
layout: default
---
2021-09-15 09:26:44 -05:00
< script type = "application/ld+json" >
{
"@context" : "https://schema.org/" ,
"@type" : "Article" ,
"headline" : "{{ page.title }}" ,
"description" : "{{ page.excerpt }}" ,
"datePublished" : "{{ page.date }}" ,
"publisher" : { { site . data . schema . organization | jsonify } } ,
"url" : "{{ page.url | prepend: site.url }}" ,
"author" : [
{ % for author in page . author % } { "@type" : "Person" ,
"name" : "{{ author }}"
} { % unless forloop . last % } , { % endunless % } { % endfor % }
]
{ % if page . cover % } , "image" : "/assets/img/blog/{{ page.cover }}" { % endif % }
}
< / script >
2021-09-13 09:55:26 -05:00
< div class = "p-5 mb-3 text-light bg-700" { % if page . cover % } style = "background-image: {{ page.color | default: " linear-gradient ( to bottom , rgba ( 40 , 50 , 63 , 0 . 3 ) , rgba ( 40 , 50 , 63 , 0 . 9 ) ) " } } , url ( / assets / img / blog / { { page . cover } } ) ; background-size: cover ; background-position: center ; " { % endif % } >
2020-05-12 11:15:32 -05:00
< div class = "container" >
< div class = "post-cover" >
< div class = "inner d-flex flex-column align-self-end" style = "min-height: 300px;" >
< div class = "mt-auto" >
< h1 class = "post-title display-4" > {{ page.title }}< / h1 >
< / div >
2020-05-12 13:10:48 -05:00
< div class = "mt-3" >
2021-09-14 20:41:49 -05:00
< p class = "post-info" > By: {% for author in page.author %}{{ author }}{% unless forloop.last %}, {% endunless %}{% endfor %} | {{ page.date | date: "%b %-d, %Y" }}< / p >
2020-05-12 11:15:32 -05:00
< / div >
< / div >
< / div >
< / div >
< / div >
< div class = "container my-5" >
2020-05-12 13:10:48 -05:00
< div class = "w-75 mx-auto" >
2020-05-12 11:15:32 -05:00
{{ content }}
2020-05-12 13:10:48 -05:00
< / div >
2020-05-12 11:15:32 -05:00
{% if page.canonical or page.cover_src_publisher %}< hr class = "m-5" / >
{% if page.cover_src_publisher %}< p > < em > Cover photo: < a href = "{{ page.cover_src }}" > {{ page.cover_src_publisher }}< / a > . Used with permission.< / em > < / p > {% endif %}
{% if page.canonical %}< p > < em > This post was originally published on < a href = "{{ page.canonical }}" > {% if page.canonical_publisher %}{{ page.canonical_publisher }}{% else %}{{ page.canonical }}{% endif %}< / a > and has been syndicated here with the permission of the author or publication.< / em > {% endif %}< / p > {% endif %}
2021-05-03 22:10:05 -05:00
{% include hr.html %}
2020-05-12 11:15:32 -05:00
{% include footer.html %}
< / div >