aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/layouts/index.html
blob: de37c3efb86c22b8dc5b3a767fabd6003a69163d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{{ define "header" }}
<!--Hello There! -->
{{ end }}
{{ define "main" }}
<div class="featured">
    <div class="featured-image-container">
        <figure>
            <img alt="JP Appel in a Cafe" src="/images/CrepeRestaurantHeadshot.jpg" title="Choco B Allentown - November 18, 2023" id="landing-image">
            <figcaption>Choco B Allentown</figcaption>
        </figure>
    </div>
    <div class="landing-content">
        {{ .Content }}
    </div>
</div>
<div class="recent-updates">
    <div class="recent-projects">
        <h4>Projects</h4>
        <ul>
            {{ range first 3 (where .Site.RegularPages "Section" "projects") }}
            {{ partial "section_preview.html" . }}
            {{ end }}
        </ul>
    </div>
    <div class="recent-research">
        <h4>Research</h4>
        <ul>
            {{ range first 3 (where .Site.RegularPages "Section" "research") }}
            {{ partial "section_preview.html" . }}
            {{ end }}
        </ul>
    </div>
    <div class="recent-blog">
        <h4>Blog</h4>
        <ul>
            {{ range (where .Site.RegularPages "Section" "blog") }}
            {{ partial "section_preview.html" . }}
            {{ end }}
        </ul>
    </div>
</div>
{{ end }}
{{ define "footer" }}
<div class="links-container">
    {{ partial "links/email.html" . }}
    {{ partial "links/github.html" "https://github.com/jpappel" }}
    {{ partial "links/linkedin.html" . }}
</div>
{{ end }}