mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-02-17 20:20:55 +01:00
move pageType to body class
This commit is contained in:
parent
0d3548ff5d
commit
337dffaab9
@ -156,6 +156,7 @@ func (m *Module) profileGETHandler(c *gin.Context) {
|
||||
Javascript: []string{jsFrontend},
|
||||
Extra: map[string]any{
|
||||
"account": targetAccount,
|
||||
"pageType": "wider",
|
||||
"rssFeed": rssFeed,
|
||||
"robotsMeta": robotsMeta,
|
||||
"statuses": statusResp.Items,
|
||||
|
@ -86,8 +86,9 @@
|
||||
.page-content {
|
||||
grid-column: 2;
|
||||
align-self: start;
|
||||
}
|
||||
|
||||
&.with-sidebar {
|
||||
.page.with-sidebar .page-content {
|
||||
grid-column: 1 / span 2;
|
||||
display: grid;
|
||||
grid-template-columns: 1fr minmax(auto, 50rem);
|
||||
@ -109,11 +110,10 @@
|
||||
margin-top: 1.5rem;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@media screen and (max-width: 80rem) {
|
||||
.page-content.with-sidebar {
|
||||
.page.with-sidebar .page-content {
|
||||
grid-column: 2;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
|
@ -74,11 +74,11 @@ image/webp
|
||||
<title>{{- template "instanceTitle" . -}}</title>
|
||||
</head>
|
||||
|
||||
<body class="page">
|
||||
<body class="page{{if .pageType}} {{.pageType}}{{end}}">
|
||||
<header class="page-header{{if .largeHeader}} large{{end}}">
|
||||
{{- include "page_header.tmpl" . | indent 3 }}
|
||||
</header>
|
||||
<div class="page-content{{if .pageType}} {{.pageType}}{{end}}">
|
||||
<div class="page-content">
|
||||
{{- include .pageContent . | indent 3 | outdentPre }}
|
||||
</div>
|
||||
<footer class="page-footer">
|
||||
|
Loading…
x
Reference in New Issue
Block a user