misc changes

This commit is contained in:
Gabriel 2022-09-21 15:54:30 -04:00
parent 21ab4db6ce
commit a0ceae22ad
4 changed files with 84 additions and 72 deletions

View file

@ -1,26 +1,27 @@
<!DOCTYPE html>
<html>
<head>
{{partial "head" .}}
</head>
<body>
{{partial "header" .}}
<main>
<section>
{{ if .Content}}
<article>
{{.Content}}
</article>
{{end}}
{{ if .Pages }}
<section>
{{range .Pages}}
{{partial "item" .}}
{{end}}
</section>
{{end}}
</main>
<head>
{{partial "head" .}}
</head>
<body>
{{partial "header" .}}
<main>
<article>
{{if .Content}}
<section>
{{.Content}}
</section>
{{end}}
{{ if .Pages }}
{{range .Pages}}
{{partial "item" .}}
{{end}}
{{end}}
</article>
</main>
{{partial "footer" .}}
</body>
</body>
</html>

View file

@ -2,6 +2,7 @@
<link rel="stylesheet" href="{{.Site.BaseURL}}css/theme.css">
<link rel="stylesheet" href="{{.Site.BaseURL}}style.css">
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="title" content="{{ .Site.Title }}">
<meta name="description" content="{{.Params.description}}">
<meta name="og:site_name" content="Libre Solutions Network">

View file

@ -1,6 +1,5 @@
<section class="listing">
<div>
<a href="{{.Permalink}}">
{{ if .Params.gif}}
<video autoplay loop preload="true">
<source src="{{.Site.BaseURL}}{{.Params.gif}}">
@ -12,19 +11,16 @@
</video>
{{else}}
{{if .Params.image}}
<a href="{{.Site.BaseURL}}{{.Permalink}}">
<img src="{{.Site.BaseURL}}{{.Params.image}}">
</a>
{{else}}
<a href="{{.Site.BaseURL}}{{.Permalink}}">
<img src="{{.Site.BaseURL}}{{.Site.Params.default_img}}">
{{end}}
{{end}}
{{end}}
</a>
{{end}}
{{end}}
{{end}}
</div>
<div>
<a href="{{.Permalink}}"><h2>{{.Title}}</h2></a>
<div class="listing-text">
<a href="{{.Permalink}}" ><h2>{{.Title}}</h2></a>
<p>{{.Params.description}}</p>
{{if .GetTerms "tags"}}
<div class="tags">

View file

@ -83,12 +83,30 @@ main{
}
.listing {
width: 100%;
margin: 1rem;
margin-bottom: 1rem;
display: flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
}
.listing *{
margin:0;
}
.listing-text{
width:80%;
max-width:40rem;
padding:1rem;
}
.listing img,
.listing video{
width:25rem;
max-width:25vw;
}
.listing h2, .listing p{
margin:0;
text-align: left;
}
.listing-preview {
display: flex;
@ -97,6 +115,9 @@ main{
align-items: flex-start;
justify-content: center;
}
.listing a{
width: fit-content;
}
img,
@ -245,10 +266,6 @@ article>section>a{
align-items: center;
}
.listing h2{
text-align: left;
}
table{
@ -287,15 +304,6 @@ video{
color: var(--theme-color-secondary);
}
.listing img,
.listing video {
max-width:25rem;
margin:1rem;
}
aside .listing img{
max-height: 15vh;
}
#sidebar {
padding-top:0;
@ -386,31 +394,6 @@ aside .listing img{
}
@media screen and (orientation:portrait){
main{
flex-direction: column-reverse;
align-items: center;
}
.recent,.featured{
flex-direction: column;
align-items: center;
width: 100%;
}
.recent img,
.featured img,
.recent video,
.featured video{
max-width:unset;
width:100%;
margin:0;
}
.listing{
flex-direction: column;
}
}
#tags{
display:flex;
flex-direction: row;
@ -437,4 +420,35 @@ aside .listing img{
.gallery>*{
margin:0.1rem;
border:1px solid var(--theme-color-accent);
}
}
@media screen and (orientation:portrait){
main{
flex-direction: column-reverse;
align-items: center;
}
.recent,.featured{
flex-direction: column;
align-items: center;
width: 100%;
}
.listing img,
.listing video{
width:unset;
max-width: 100%;
height:25vh;
}
.recent img,
.featured img,
.recent video,
.featured video{
max-width:unset;
width:100%;
margin:0;
}
.listing{
flex-direction: column;
}
}