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>
|
||||
<title>{{.Title}}</title>
|
||||
<link>{{ .Permalink }}</link>
|
||||
<description>{{.Params.description}}</description>
|
||||
<generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
|
||||
<language>{{.}}</language>{{end}}
|
||||
{{ range .Site.RegularPages }}
|
||||
<language>{{.}}</language>{{end}}{{ if .Site.Data.details.profilephoto}}
|
||||
<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>
|
||||
<title>{{ .Title }}</title>
|
||||
<link>{{ .Permalink }}</link>
|
||||
<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}}
|
||||
<guid>{{ .Permalink }}</guid>
|
||||
<description>{{- .Summary | html -}}</description>
|
||||
<content:encoded>{{- .Content | html -}}</content:encoded>
|
||||
</item>
|
||||
{{ end }}
|
||||
<guid>{{ .Permalink }}</guid>{{ if .Params.video}}
|
||||
<enclosure url="{{.Site.BaseURL}}{{.Params.video}}" />
|
||||
{{end}}{{ if .Params.audio}}
|
||||
<enclosure url="{{.Site.BaseURL}}{{.Params.audio}}" />
|
||||
{{end}}{{ if .Params.image}}
|
||||
<image>{{.Params.image}}</image>{{end}}
|
||||
<description>{{- .Content | html -}}</description>
|
||||
</item>{{ end }}
|
||||
</channel>
|
||||
</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>
|
||||
<source src='{{.Get 0 }}'>
|
||||
<source src='{{.Get "src"}}'>
|
||||
</video>
|
|
@ -44,21 +44,19 @@ audio{
|
|||
width:80%;
|
||||
}
|
||||
#profile{
|
||||
padding:1rem;
|
||||
padding:1.5rem;
|
||||
margin-bottom:1rem;
|
||||
min-width: 20vw;
|
||||
max-width:90vw;
|
||||
|
||||
}
|
||||
|
||||
#posts{
|
||||
padding:1rem;
|
||||
padding:1.5rem;
|
||||
margin-bottom:1rem;
|
||||
min-width: 20vw;
|
||||
|
||||
}
|
||||
#profile{
|
||||
max-width:50rem;
|
||||
}
|
||||
#posts{
|
||||
width:40vw;
|
||||
}
|
||||
|
@ -108,9 +106,8 @@ nav>a{
|
|||
font-size:1rem;
|
||||
}
|
||||
#profile,#posts{
|
||||
max-height: none;
|
||||
max-width:90%;
|
||||
overflow-y:initial;
|
||||
width:85%;
|
||||
padding:5%;
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -136,4 +133,8 @@ blockquote {
|
|||
margin-left:2rem;
|
||||
padding-left:1rem;
|
||||
border-left:0.5rem solid var(--theme-accent);
|
||||
}
|
||||
|
||||
.gallery{
|
||||
max-width:40vw;
|
||||
}
|
Loading…
Reference in a new issue