Adding company icons and emotes for sub-section headers
All checks were successful
Build and Deploy Resume Site / setup-website-content (push) Successful in 6s

This commit is contained in:
2025-08-08 08:37:22 -07:00
parent bb2af24817
commit 5240dd9981
11 changed files with 34 additions and 18 deletions

View File

@@ -4,11 +4,10 @@
<ul class="timeline">
{{ range (.Paginate (.Pages.ByParam "rank")).Pages }}
<li>
<a>
<strong class="bigger">{{.Title}}</strong>
<em class="text-muted">@</em>
<a class="bigger">{{.Params.Company}}</a>
</a>
<img src="/images/{{ .Params.Icon }}" class="company-icon">
<strong class="bigger">{{.Title}}</strong>
<em class="text-muted">@</em>
<a class="bigger">{{.Params.Company}}</a>
<p class="badge badge-dark float-right media-float">{{.Params.When}}</p>
<p>{{.Content}}</p>
</li>

View File

@@ -12,6 +12,12 @@ html {
scroll-behavior: smooth;
}
.company-icon {
height: 48px;
width: 48px;
vertical-align: bottom;
}
.container {
max-width: 75%;
}