adding-gallery function
This commit is contained in:
parent
5ede80ccbe
commit
c4f36998ec
5 changed files with 28 additions and 16 deletions
|
@ -1,20 +1,28 @@
|
||||||
<rss version="2.0">
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
||||||
<channel>
|
<channel>
|
||||||
<title>{{.Title}}</title>
|
<title>{{.Title}}</title>
|
||||||
<link>{{ .Permalink }}</link>
|
<link>{{ .Permalink }}</link>
|
||||||
<description>{{.Params.description}}</description>
|
<description>{{.Params.description}}</description>
|
||||||
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
|
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
|
||||||
<language>{{.}}</language>{{end}}
|
<language>{{.}}</language>{{end}}{{ if .Site.Data.details.profilephoto}}
|
||||||
{{ range .Site.RegularPages }}
|
<image>
|
||||||
|
<title>{{.Site.Data.details.name}}</title>
|
||||||
|
<link>{{.Site.BaseURL}}</link>
|
||||||
|
<url>{{.Site.BaseURL}}{{.Site.Data.details.profilephoto}}</url>
|
||||||
|
</image>{{end}}
|
||||||
|
<atom:link href="{{.Site.BaseURL}}rss" rel="self" type="application/rss+xml" />{{ range .Site.RegularPages }}
|
||||||
<item>
|
<item>
|
||||||
<title>{{ .Title }}</title>
|
<title>{{ .Title }}</title>
|
||||||
<link>{{ .Permalink }}</link>
|
<link>{{ .Permalink }}</link>
|
||||||
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
<pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
|
||||||
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
{{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
|
||||||
<guid>{{ .Permalink }}</guid>
|
<guid>{{ .Permalink }}</guid>{{ if .Params.video}}
|
||||||
<description>{{- .Summary | html -}}</description>
|
<enclosure url="{{.Site.BaseURL}}{{.Params.video}}" />
|
||||||
<content:encoded>{{- .Content | html -}}</content:encoded>
|
{{end}}{{ if .Params.audio}}
|
||||||
</item>
|
<enclosure url="{{.Site.BaseURL}}{{.Params.audio}}" />
|
||||||
{{ end }}
|
{{end}}{{ if .Params.image}}
|
||||||
|
<image>{{.Params.image}}</image>{{end}}
|
||||||
|
<description>{{- .Content | html -}}</description>
|
||||||
|
</item>{{ end }}
|
||||||
</channel>
|
</channel>
|
||||||
</rss>
|
</rss>
|
||||||
|
|
1
layouts/shortcodes/gallery-end.html
Normal file
1
layouts/shortcodes/gallery-end.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
</div>
|
1
layouts/shortcodes/gallery-start.html
Normal file
1
layouts/shortcodes/gallery-start.html
Normal file
|
@ -0,0 +1 @@
|
||||||
|
<div class="gallery">
|
|
@ -1,3 +1,4 @@
|
||||||
<video controls autoplay muted>
|
<video controls autoplay muted>
|
||||||
<source src='{{.Get 0 }}'>
|
<source src='{{.Get 0 }}'>
|
||||||
|
<source src='{{.Get "src"}}'>
|
||||||
</video>
|
</video>
|
|
@ -44,21 +44,19 @@ audio{
|
||||||
width:80%;
|
width:80%;
|
||||||
}
|
}
|
||||||
#profile{
|
#profile{
|
||||||
padding:1rem;
|
padding:1.5rem;
|
||||||
margin-bottom:1rem;
|
margin-bottom:1rem;
|
||||||
min-width: 20vw;
|
min-width: 20vw;
|
||||||
|
max-width:90vw;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#posts{
|
#posts{
|
||||||
padding:1rem;
|
padding:1.5rem;
|
||||||
margin-bottom:1rem;
|
margin-bottom:1rem;
|
||||||
min-width: 20vw;
|
min-width: 20vw;
|
||||||
|
|
||||||
}
|
}
|
||||||
#profile{
|
|
||||||
max-width:50rem;
|
|
||||||
}
|
|
||||||
#posts{
|
#posts{
|
||||||
width:40vw;
|
width:40vw;
|
||||||
}
|
}
|
||||||
|
@ -108,9 +106,8 @@ nav>a{
|
||||||
font-size:1rem;
|
font-size:1rem;
|
||||||
}
|
}
|
||||||
#profile,#posts{
|
#profile,#posts{
|
||||||
max-height: none;
|
width:85%;
|
||||||
max-width:90%;
|
padding:5%;
|
||||||
overflow-y:initial;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -136,4 +133,8 @@ blockquote {
|
||||||
margin-left:2rem;
|
margin-left:2rem;
|
||||||
padding-left:1rem;
|
padding-left:1rem;
|
||||||
border-left:0.5rem solid var(--theme-accent);
|
border-left:0.5rem solid var(--theme-accent);
|
||||||
|
}
|
||||||
|
|
||||||
|
.gallery{
|
||||||
|
max-width:40vw;
|
||||||
}
|
}
|
Loading…
Reference in a new issue