Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangchung committed Jan 3, 2025
1 parent f31e94a commit a710bf9
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions layouts/_default/jobuary-resume-reviewers-2025.html
Original file line number Diff line number Diff line change
@@ -1,17 +1,21 @@
{{ define "main" }}
{{- partial "navbar_temp.html" . -}}
<link rel="stylesheet" href="{{ " assets/scss/components/_jobuary.scss" | relURL }}">
<h1 class="max-width-700 centered padded-top">Meet the Resume Reviewers!</h1>
<p class="max-width-700 centered padded-between">Read through the profiles of our resume reviewers and click the link to
schedule a
call with them.</p>
<div id="team_flex_box">
{{ range .Site.Data.resume_reviewers }}
<div class="profile">
<img src="{{ .image | relURL }}" alt="{{ .name }}">
<h2>{{ .name }}</h2>
<p>{{ .intro }}</p>
{{- partial "navbar_temp.html" . -}}
<link
rel="stylesheet"
href="{{ " assets/scss/components/_jobuary.scss" | relURL }}"
/>
<h1 class="max-width-700 centered padded-top">Meet the Resume Reviewers!</h1>
<p class="max-width-700 centered padded-between">
Read through the profiles of our resume reviewers and click the link to
schedule a call with them.
</p>
<div id="team_flex_box">
{{ range .Site.Data.resume_reviewers }}
<div class="profile">
<img src="{{ .image | relURL }}" alt="{{ .name }}" />
<h2>{{ .name }}</h2>
<p>{{ .intro }}</p>
</div>
{{ end }}
</div>
{{ end }}
</div>
{{ end }}
{{ end }}

0 comments on commit a710bf9

Please sign in to comment.