.
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Captain ALM 2022-07-26 17:05:24 +01:00
parent a41b07c58c
commit 3ffbee52af
Signed by: alfred
GPG Key ID: 4E4ADD02609997B1
2 changed files with 11 additions and 5 deletions

View File

@ -13,6 +13,12 @@ main{
.no-lst-style{ .no-lst-style{
list-style: none; list-style: none;
} }
.centered{
text-align: center;
}
.padded-2px{
padding: 2px;
}
.header{ .header{
position: fixed; position: fixed;
top: 0; top: 0;

View File

@ -32,16 +32,16 @@
<div> <div>
<div class="item-table"> <div class="item-table">
<div> <div>
<div class="item-table-half"> <div class="item-table-full">
<div><h1>{{ .Data.About.Title }}</h1></div> <div class="centered padded-2px"><h1>{{ .Data.About.Title }}</h1></div>
</div> </div>
<div class="item-table-half"> <div class="item-table-240">
<div><h6>Email: <a href="mailto:{{ .Data.About.ContactEmail }}">{{ .Data.About.ContactEmail }}</a></h6></div> <div class="centered padded-2px"><h4>Email: <a href="mailto:{{ .Data.About.ContactEmail }}">{{ .Data.About.ContactEmail }}</a></h4></div>
</div> </div>
</div> </div>
<div> <div>
<div class="item-table-full"> <div class="item-table-full">
<div>{{ .Data.About.GetContent }}</div> <div class="padded-2px">{{ .Data.About.GetContent }}</div>
</div> </div>
<div class="item-table-240"> <div class="item-table-240">
<div><a href="{{ .Data.About.ImageLocation }}"><img src="{{ .Data.About.ThumbnailLocation }}" alt="Image of Me." width="240px"></a></div> <div><a href="{{ .Data.About.ImageLocation }}"><img src="{{ .Data.About.ThumbnailLocation }}" alt="Image of Me." width="240px"></a></div>