[PATCH links] Adding the logo at the bottom for listing
Export this patch
---
static/css/style.css | 7 +++++--
templates/base.html | 13 +++++++------
2 files changed, 12 insertions(+), 8 deletions(-)
diff --git a/static/css/style.css b/static/css/style.css
index 638b6e3..d9eefa0 100644
--- a/static/css/style.css
+++ b/static/css/style.css
@@ -98,9 +98,8 @@ footer blockquote {
}
.app-content {
- width: calc(100% - 225px);
flex: 1;
- padding-bottom: 5rem;
+ padding-bottom: 3rem;
padding-top: 3rem;
padding-left: 2rem;
}
@@ -808,6 +807,10 @@ a.bullet-link:before {
}
}
+.img-container-v2 {
+ flex-direction: column;
+}
+
.help-text {
font-size: 14px;
color: var(--color-grey) !important;
diff --git a/templates/base.html b/templates/base.html
index c7cd723..2033983 100644
--- a/templates/base.html
+++ b/templates/base.html
@@ -20,11 +20,6 @@
{{ .env }} enviroment
</div>
{{end}}
- {{ if .hideNav }}
- <div class="full-content-title">
- <h1>{{.base_pd.Title}}</h1>
- </div>
- {{end}}
{{if not .hideNav}}
<div class="root-container">
<aside>
@@ -277,7 +272,7 @@
{{end}}
</ul>
</div>
- <main class="app-content{{if .hideNav}} full-content{{end}}{{ block "main-class" . }}{{ end }}">
+ <main class="app-content{{ block "main-class" . }}{{ end }}">
{{if .messages }}
<section>
{{range .messages}}
@@ -290,6 +285,12 @@
{{end}}
{{define "base_footer"}}
</main>
+ {{if .hideNav}}
+ <div class="img-container-v2 is-center">
+ <p class="is-marginless">Powered by</p>
+ <img src="{{ staticURL "img/lt_logo.svg"}}" alt="link_tako_logo" width="195px" height="50px">
+ </div>
+ {{end}}
</div>
<footer>
--
2.34.1
Applied. Thanks!