97 lines
2.0 KiB
HTML
97 lines
2.0 KiB
HTML
{{ define "main" }}
|
|
<article>
|
|
<header class="article-header">
|
|
{{ if .Params.image }}
|
|
<img src="{{ .Params.image }}" alt="{{ .Title }} logo" class="case-detail-logo" />
|
|
{{ end }}
|
|
<h1>{{ .Title }}</h1>
|
|
{{ if .Description }}
|
|
<p class="lead">{{ .Description }}</p>
|
|
{{ end }}
|
|
{{ if .Params.url }}
|
|
<p><strong>URL:</strong> <a href="{{ .Params.url }}" target="_blank">{{ .Params.url }}</a></p>
|
|
{{ end }}
|
|
{{ if .Date }}
|
|
<p><small>Last updated: {{ .Date.Format "January 2, 2006" }}</small></p>
|
|
{{ end }}
|
|
{{ if .Params.tags }}
|
|
<div class="tags">
|
|
{{ range .Params.tags }}
|
|
<span class="tag">{{ . }}</span>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
</header>
|
|
|
|
<div class="article-content">
|
|
{{ .Content }}
|
|
</div>
|
|
|
|
{{ if .Params.external_url }}
|
|
<p><a href="{{ .Params.external_url }}" target="_blank" class="btn">Visit External Site</a></p>
|
|
{{ end }}
|
|
{{ if .Params.url_external }}
|
|
<p><a href="{{ .Params.url_external }}" target="_blank" class="btn">Visit External Site</a></p>
|
|
{{ end }}
|
|
</article>
|
|
|
|
|
|
<style>
|
|
.lead {
|
|
font-size: 1.125rem;
|
|
color: #666;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.article-header {
|
|
margin-bottom: 2rem;
|
|
padding-bottom: 1rem;
|
|
border-bottom: 1px solid #e9ecef;
|
|
}
|
|
|
|
.article-content {
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.article-content h2,
|
|
.article-content h3,
|
|
.article-content h4 {
|
|
margin-top: 2rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.article-nav {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
margin-top: 2rem;
|
|
padding-top: 1rem;
|
|
border-top: 1px solid #e9ecef;
|
|
}
|
|
|
|
.article-nav a {
|
|
text-decoration: none;
|
|
color: #007bff;
|
|
padding: 0.5rem 0;
|
|
}
|
|
|
|
.article-nav a:hover {
|
|
color: #0056b3;
|
|
}
|
|
|
|
|
|
.tags {
|
|
margin: 0.5rem 0;
|
|
}
|
|
|
|
.tag {
|
|
display: inline-block;
|
|
background: #e9ecef;
|
|
color: #495057;
|
|
padding: 0.25rem 0.5rem;
|
|
margin: 0.25rem 0.25rem 0 0;
|
|
border-radius: 0.25rem;
|
|
font-size: 0.875rem;
|
|
}
|
|
</style>
|
|
{{ end }}
|