hmn/src/templates/src/jam_2024_lj_feed.html

32 lines
1016 B
HTML
Raw Normal View History

2024-02-08 20:21:01 +00:00
{{ template "jam_2024_learning_base.html" . }}
2024-03-11 16:27:34 +00:00
2024-02-08 20:21:01 +00:00
{{ define "content-top" }}
2024-03-13 04:20:35 +00:00
{{ template "jam_2024_lj_bannersmall.html" . }}
2024-02-08 20:21:01 +00:00
{{ end }}
{{ define "content" }}
2024-03-11 16:27:34 +00:00
<div class="mw7 margin-center flex flex-column">
2024-03-11 18:15:32 +00:00
<div class="ph3 pv4 bb b--rich-gray">
2024-03-13 04:20:35 +00:00
<h2 class="c--theme-gradient-light mb3">Projects</h2>
2024-03-13 02:13:05 +00:00
{{ template "jam_2024_lj_projects.html" .Projects }}
2024-03-11 18:15:32 +00:00
</div>
2024-03-13 02:13:05 +00:00
{{ if .TimelineItems }}
<div class="ph3 pv4 bb b--rich-gray">
2024-03-13 04:20:35 +00:00
<h2 class="c--theme-gradient-light">All updates</h2>
<p>
See what community members are learning about their topics. You can share your own updates via your <a href="{{ or .SubmittedProjectUrl .NewProjectUrl }}">project page</a> or using the <b>!til</b> command on Discord.
</p>
<div class="flex flex-column g2 mt3">
2024-03-13 02:13:05 +00:00
{{ template "jam_2024_lj_feeditems.html" .TimelineItems }}
</div>
2024-02-08 20:21:01 +00:00
</div>
2024-03-13 02:13:05 +00:00
{{ end }}
2024-03-11 16:27:34 +00:00
<div>
2024-03-11 18:15:32 +00:00
<div class="mv5 h3 fill-current link--white">
2024-03-11 16:27:34 +00:00
<a href="{{ .Header.HMNHomepageUrl }}">{{ svg "hmn_circuit" }}</a>
</div>
</div>
2024-02-08 20:21:01 +00:00
</div>
{{ end }}