2022-11-01 04:07:07 +00:00
|
|
|
<style>
|
|
|
|
:root {
|
|
|
|
--dark: #020202;
|
|
|
|
--light: #fffff0;
|
|
|
|
}
|
|
|
|
|
|
|
|
body {
|
|
|
|
font-size: 16px;
|
|
|
|
margin: 1em;
|
|
|
|
color: var(--dark, #020202);
|
|
|
|
background-color: var(--light, #fffff0);
|
|
|
|
background-color: #fffff0;
|
|
|
|
font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkin {
|
|
|
|
border-top: 1px solid black;
|
|
|
|
padding: 1em 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkin__summary {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkin__title {
|
|
|
|
display: inline;
|
|
|
|
font-size: 1em;
|
|
|
|
}
|
|
|
|
|
|
|
|
.checkin__meta {
|
|
|
|
margin: 0;
|
|
|
|
}
|
2022-12-05 01:23:21 +00:00
|
|
|
|
|
|
|
.popup__image,
|
|
|
|
.popup__video {
|
|
|
|
width: auto;
|
|
|
|
height: auto;
|
|
|
|
max-height: 90vh;
|
|
|
|
margin-top: 1em;
|
|
|
|
display: block;
|
|
|
|
background-color: white;
|
|
|
|
border: 2px solid var(--dark, #020202);
|
|
|
|
}
|
2022-11-01 04:07:07 +00:00
|
|
|
</style>
|
|
|
|
|
|
|
|
<h1>track.bengoldsworthy.net {{ ucwords($digest_type) }} Digest</h1>
|
|
|
|
<p><i>Generated: {{ (new DateTime())->format('D jS F Y') }}</i></p>
|
|
|
|
<p>View the tracker <a href="https://track.bengoldsworthy.net">here.</a></p>
|
|
|
|
<hr>
|
|
|
|
<h2>Checkins</h2>
|
2022-11-28 19:49:14 +00:00
|
|
|
@if($checkinsList)
|
2022-11-10 02:15:42 +00:00
|
|
|
<ol>
|
2023-03-03 04:35:44 +00:00
|
|
|
@include('partials.checkins-list', ['email' => true])
|
2022-11-10 02:15:42 +00:00
|
|
|
</ol>
|
|
|
|
@else
|
|
|
|
<p>No new checkins</p>
|
|
|
|
@endif
|