mirror of
https://github.com/McShelby/hugo-theme-relearn.git
synced 2024-11-27 01:33:04 +00:00
theme: fix usage of <section> in attachments #88
This commit is contained in:
parent
03205f9f26
commit
6d96713902
2 changed files with 42 additions and 45 deletions
|
@ -1,36 +1,33 @@
|
|||
{{ $_hugo_config := `{ "version": 1 }` }}
|
||||
{{ $style := .Get "style" | default "neutral" }}
|
||||
{{ $title := .Get "title" | default ("Attachments-label" | T) }}
|
||||
{{ $sort := .Get "sort" | default "asc" }}
|
||||
<section class="attachments {{ $style }}">
|
||||
<div class="label">{{ $title }}</div>
|
||||
<div class="attachments-files">
|
||||
{{- $filesName := "files" }}
|
||||
{{- if ne .Page.File.BaseFileName "index" }}
|
||||
{{- $filesName = printf "%s.files" .Page.File.BaseFileName }}
|
||||
{{- end}}
|
||||
{{- $_hugo_config := `{ "version": 1 }` }}
|
||||
{{- $style := .Get "style" | default "neutral" }}
|
||||
{{- $title := .Get "title" | default ("Attachments-label" | T) }}
|
||||
{{- $sort := .Get "sort" | default "asc" }}
|
||||
<div class="attachments {{ $style }}">
|
||||
<div class="label">{{ $title }}</div>
|
||||
<ul class="attachments-files">
|
||||
{{- $filesName := "files" }}
|
||||
{{- if ne .Page.File.BaseFileName "index" }}
|
||||
{{- $filesName = printf "%s.files" .Page.File.BaseFileName }}
|
||||
{{- end}}
|
||||
|
||||
{{- $fileDir := replace .Page.File.Dir "\\" "/" }}
|
||||
{{- $pattern := .Get "pattern" | default "" }}
|
||||
{{- range sort (readDir (printf "content/%s%s" .Page.File.Dir $filesName) ) "Name" $sort }}
|
||||
{{- if findRE $pattern .Name}}
|
||||
{{- $size := .Size }}
|
||||
{{- $unit := "Byte-symbol" }}
|
||||
{{- if ge $size 1024 }}
|
||||
{{- $size = div $size 1024 }}
|
||||
{{- $unit = "Kilobyte-symbol" }}
|
||||
{{- end }}
|
||||
{{- if ge $size 1024 }}
|
||||
{{- $size = div $size 1024 }}
|
||||
{{- $unit = "Megabyte-symbol" }}
|
||||
{{- end }}
|
||||
{{- $unitsymbol := $unit | T }}
|
||||
<li>
|
||||
<a href="{{ (printf "%s%s/%s" $fileDir $filesName .Name) | relLangURL }}">{{.Name}}</a>
|
||||
({{$size}} {{$unitsymbol}})
|
||||
</li>
|
||||
{{- end }}
|
||||
{{- $fileDir := replace .Page.File.Dir "\\" "/" }}
|
||||
{{- $pattern := .Get "pattern" | default "" }}
|
||||
{{- range sort (readDir (printf "content/%s%s" .Page.File.Dir $filesName) ) "Name" $sort }}
|
||||
{{- if findRE $pattern .Name}}
|
||||
{{- $size := .Size }}
|
||||
{{- $unit := "Byte-symbol" }}
|
||||
{{- if ge $size 1024 }}
|
||||
{{- $size = div $size 1024 }}
|
||||
{{- $unit = "Kilobyte-symbol" }}
|
||||
{{- end }}
|
||||
{{- if ge $size 1024 }}
|
||||
{{- $size = div $size 1024 }}
|
||||
{{- $unit = "Megabyte-symbol" }}
|
||||
{{- end }}
|
||||
{{- $unitsymbol := $unit | T }}
|
||||
<li><a href="{{ (printf "%s%s/%s" $fileDir $filesName .Name) | relLangURL }}">{{.Name}}</a> ({{$size}} {{$unitsymbol}})</li>
|
||||
{{- end }}
|
||||
</div>
|
||||
{{- .Inner }}
|
||||
</section>
|
||||
{{- end }}
|
||||
</ul>
|
||||
{{- .Inner }}
|
||||
</div>
|
||||
|
|
|
@ -507,7 +507,7 @@ div.notices.tip > div.label:first-child:before {
|
|||
|
||||
/* attachments shortcode */
|
||||
|
||||
section.attachments {
|
||||
div.attachments {
|
||||
border-top-width: 2rem;
|
||||
border-top-style: solid;
|
||||
color: #505050;
|
||||
|
@ -519,14 +519,14 @@ section.attachments {
|
|||
padding-bottom: .1px;
|
||||
}
|
||||
|
||||
section.attachments > div.label {
|
||||
div.attachments > div.label {
|
||||
color: #fff;
|
||||
font-weight: normal;
|
||||
margin-bottom: 1rem;
|
||||
margin-top: -1.75rem;
|
||||
}
|
||||
|
||||
section.attachments > div.label:first-child:before {
|
||||
div.attachments > div.label:first-child:before {
|
||||
font-family: "Font Awesome 5 Free";
|
||||
font-weight: 900;
|
||||
margin-left: -.35rem;
|
||||
|
@ -534,7 +534,7 @@ section.attachments > div.label:first-child:before {
|
|||
content: "\f0c6";
|
||||
}
|
||||
|
||||
section.attachments .attachments-files {
|
||||
div.attachments .attachments-files {
|
||||
padding: 1rem;
|
||||
display: block;
|
||||
font-size: 1rem;
|
||||
|
@ -542,36 +542,36 @@ section.attachments .attachments-files {
|
|||
margin-bottom: 0rem;
|
||||
}
|
||||
|
||||
section.attachments.orange {
|
||||
div.attachments.orange {
|
||||
border-color: #BF8B44;
|
||||
background-color: #FFF2DB;
|
||||
}
|
||||
|
||||
section.attachments.green {
|
||||
div.attachments.green {
|
||||
border-color: #5AA55A;
|
||||
background-color: #E6F9E6;
|
||||
}
|
||||
|
||||
section.attachments.red {
|
||||
div.attachments.red {
|
||||
border-color: #D96A68;
|
||||
background-color: #FFEBEB;
|
||||
}
|
||||
|
||||
section.attachments.blue {
|
||||
div.attachments.blue {
|
||||
border-color: #4897CC;
|
||||
background-color: #E9F5FD;
|
||||
}
|
||||
|
||||
section.attachments.grey {
|
||||
div.attachments.grey {
|
||||
border-color: #505D65;
|
||||
background-color: #F4F4F4;
|
||||
}
|
||||
|
||||
section.attachments.neutral {
|
||||
div.attachments.neutral {
|
||||
border-color: transparent;
|
||||
background-color: transparent;
|
||||
}
|
||||
section.attachments.neutral > div.label {
|
||||
div.attachments.neutral > div.label {
|
||||
color: #505050;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue