27
0
Fork 1
forked from mirror/Mainroad

Fix indentation and whitespace

According to .editorconfig
This commit is contained in:
Xiretza 2025-02-18 20:17:14 +00:00
parent 7262f75960
commit a4cf6f482b
5 changed files with 110 additions and 110 deletions

View file

@ -1,71 +1,71 @@
{{ define "main" }}
<article class="author-profile">
<header class="author-profile__header">
<div class="author-profile__intro">
{{ with .Resources.GetMatch "portrait.*" }}
{{ with .Fill "120x120 webp" }}
<figure class="author-profile__portrait">
<img src="{{ .RelPermalink }}"
width="{{ .Width }}"
height="{{ .Height }}"
alt="{{ $.Title }}'s portrait"
class="author-profile__image">
</figure>
{{ end }}
{{ end }}
<h1 class="author-profile__title">{{ .Title }}</h1>
</div>
<div class="author-profile__bio">
{{ .Content }}
</div>
</header>
<header class="author-profile__header">
<div class="author-profile__intro">
{{ with .Resources.GetMatch "portrait.*" }}
{{ with .Fill "120x120 webp" }}
<figure class="author-profile__portrait">
<img src="{{ .RelPermalink }}"
width="{{ .Width }}"
height="{{ .Height }}"
alt="{{ $.Title }}'s portrait"
class="author-profile__image">
</figure>
{{ end }}
{{ end }}
<h1 class="author-profile__title">{{ .Title }}</h1>
</div>
{{ with .Params.social }}
<div class="widget-social widget">
<h4 class="widget-social__title widget__title">Connect</h4>
<div class="widget-social__content widget__content">
{{ range . }}
<div class="widget-social__item widget__item">
<a class="widget-social__link widget__link btn"
title="{{ .service }}"
rel="noopener noreferrer"
href="{{ .link }}"
target="_blank">
{{ $iconName := lower .service }}
{{ if eq $iconName "x" }}
{{ partial "svg/x.svg" (dict "class" "widget-social__link-icon") }}
{{ else }}
{{ partial (printf "svg/%s.svg" $iconName) (dict "class" "widget-social__link-icon") }}
{{ end }}
<span>{{ .service }}</span>
</a>
</div>
{{ end }}
<div class="author-profile__bio">
{{ .Content }}
</div>
</header>
{{ with $.Params.contact.email }}
<div class="widget-social__item widget__item">
<a class="widget-social__link widget__link btn"
title="Email"
href="mailto:{{ . }}">
{{ partial "svg/email.svg" (dict "class" "widget-social__link-icon") }}
<span>Email</span>
</a>
</div>
{{ end }}
</div>
</div>
{{ end }}
{{ with .Params.social }}
<div class="widget-social widget">
<h4 class="widget-social__title widget__title">Connect</h4>
<div class="widget-social__content widget__content">
{{ range . }}
<div class="widget-social__item widget__item">
<a class="widget-social__link widget__link btn"
title="{{ .service }}"
rel="noopener noreferrer"
href="{{ .link }}"
target="_blank">
{{ $iconName := lower .service }}
{{ if eq $iconName "x" }}
{{ partial "svg/x.svg" (dict "class" "widget-social__link-icon") }}
{{ else }}
{{ partial (printf "svg/%s.svg" $iconName) (dict "class" "widget-social__link-icon") }}
{{ end }}
<span>{{ .service }}</span>
</a>
</div>
{{ end }}
<section class="main list" role="main">
<header class="main__header">
<h2 class="main__title widget__title">Publications</h2>
</header>
{{ range .Paginator.Pages }}
{{ .Render "summary" }}
{{ end }}
</section>
{{ with $.Params.contact.email }}
<div class="widget-social__item widget__item">
<a class="widget-social__link widget__link btn"
title="Email"
href="mailto:{{ . }}">
{{ partial "svg/email.svg" (dict "class" "widget-social__link-icon") }}
<span>Email</span>
</a>
</div>
{{ end }}
</div>
</div>
{{ end }}
<section class="main list" role="main">
<header class="main__header">
<h2 class="main__title widget__title">Publications</h2>
</header>
{{ range .Paginator.Pages }}
{{ .Render "summary" }}
{{ end }}
</section>
</article>
{{ partial "pagination.html" . }}

View file

@ -1,26 +1,26 @@
{{- $taxonomy := "authors" }}
{{- with .GetTerms $taxonomy }}
<div class="authorbox clearfix">
{{- range $k, $author := . }}
<div class="authorbox__singleAuthor">
<figure class="authorbox__avatar">
{{ $avatar := .Resources.GetMatch "portrait.*" | default (resources.Get "images/avatar.png") }}
{{ with $avatar.Fill "120x120 webp" }}
<img src="{{ .RelPermalink }}" width="120" height="120" alt="{{ $.Title }}'s portrait"
class="author-profile__image">
{{ end }}
</figure>
<div class="authorbox__header">
<span class="authorbox__name">
<a href="{{ $author.RelPermalink }}">About {{ $author.Title }}</a>
</span>
</div>
{{- with $author.Params.bio }}
<div class="authorbox__description">
{{ . | markdownify }}
</div>
{{- end }}
</div>
{{- end }}
{{- range $k, $author := . }}
<div class="authorbox__singleAuthor">
<figure class="authorbox__avatar">
{{ $avatar := .Resources.GetMatch "portrait.*" | default (resources.Get "images/avatar.png") }}
{{ with $avatar.Fill "120x120 webp" }}
<img src="{{ .RelPermalink }}" width="120" height="120" alt="{{ $.Title }}'s portrait"
class="author-profile__image">
{{ end }}
</figure>
<div class="authorbox__header">
<span class="authorbox__name">
<a href="{{ $author.RelPermalink }}">About {{ $author.Title }}</a>
</span>
</div>
{{- with $author.Params.bio }}
<div class="authorbox__description">
{{ . | markdownify }}
</div>
{{- end }}
</div>
{{- end }}
</div>
{{- end }}

View file

@ -11,14 +11,14 @@
{{- $server := "" }}
{{- if gt (int (index (split hugo.Version ".") 1)) "120" }}
{{ $server = hugo.IsServer }}
{{ $server = hugo.IsServer }}
{{- else }}
{{ $server = .Site.IsServer }}
{{ $server = .Site.IsServer }}
{{- end -}}
{{- if not $server }}
{{ template "_internal/google_analytics.html" . }}
{{ template "_internal/google_analytics.html" . }}
{{- end }}
{{ if .Site.Params.CustomHeadHTML }}
{{ .Site.Params.CustomHeadHTML | safeHTML }}
{{ .Site.Params.CustomHeadHTML | safeHTML }}
{{ end }}

View file

@ -1,13 +1,13 @@
<meta name="description" content="{{ if .IsHome }}{{ .Site.Params.description }}{{ else }}{{ .Params.Description }}{{ end }}">
{{- if .Site.Params.opengraph }}
{{ template "_internal/opengraph.html" . }}
{{ template "_internal/opengraph.html" . }}
{{- end }}
{{- if .Site.Params.schema }}
{{ template "_internal/schema.html" . }}
{{ template "_internal/schema.html" . }}
{{- end }}
{{- if .Site.Params.twitter_cards }}
{{ template "_internal/twitter_cards.html" . }}
{{ template "_internal/twitter_cards.html" . }}
{{- end }}
{{- with .OutputFormats.Get "rss" }}

View file

@ -1,24 +1,24 @@
{{- if .Site.Menus.main }}
<nav class="menu">
<button class="menu__btn" aria-haspopup="true" aria-expanded="false" tabindex="0">
<span class="menu__btn-title" tabindex="-1">{{ T "menu_label" }}</span>
</button>
<ul class="menu__list">
{{- $currentNode := . }}
{{- range .Site.Menus.main }}
{{- if .Name }}
<li class="menu__item{{ if or ($currentNode.IsMenuCurrent "main" .) ($currentNode.HasMenuCurrent "main" .) }} menu__item--active{{ end }}">
<a class="menu__link" href="{{ .URL }}">
{{ if .Pre }}
{{ readFile (printf "static%s" .Pre) | safeHTML }}
{{ end }}
<span class="menu__text">{{ .Name }}</span>
{{ .Post }}
</a>
</li>
{{- end }}
{{- end }}
</ul>
<button class="menu__btn" aria-haspopup="true" aria-expanded="false" tabindex="0">
<span class="menu__btn-title" tabindex="-1">{{ T "menu_label" }}</span>
</button>
<ul class="menu__list">
{{- $currentNode := . }}
{{- range .Site.Menus.main }}
{{- if .Name }}
<li class="menu__item{{ if or ($currentNode.IsMenuCurrent "main" .) ($currentNode.HasMenuCurrent "main" .) }} menu__item--active{{ end }}">
<a class="menu__link" href="{{ .URL }}">
{{ if .Pre }}
{{ readFile (printf "static%s" .Pre) | safeHTML }}
{{ end }}
<span class="menu__text">{{ .Name }}</span>
{{ .Post }}
</a>
</li>
{{- end }}
{{- end }}
</ul>
</nav>
{{ else -}}
<div class="divider"></div>