2020-05-12 12:15:32 -04:00
---
layout: default
---
2021-09-15 10:26:44 -04: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 10:55:26 -04: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 12:15:32 -04: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 14:10:48 -04:00
< div class = "mt-3" >
2021-09-14 21:41:49 -04: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 12:15:32 -04:00
< / div >
< / div >
< / div >
< / div >
< / div >
< div class = "container my-5" >
2022-02-12 02:43:21 -05:00
< div class = "row justify-content-md-center" >
< div class = "col-lg-7" >
{{ content }}
< / div >
2020-05-12 14:10:48 -04:00
< / div >
2020-05-12 12:15:32 -04: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 23:10:05 -04:00
{% include hr.html %}
2020-05-12 12:15:32 -04:00
{% include footer.html %}
< / div >