Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
T
TedImg - img.tedomum.net
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
3
Issues
3
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
TeDomum
TedImg - img.tedomum.net
Commits
698f7ba8
Commit
698f7ba8
authored
Apr 01, 2019
by
kaiyou
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix displaying the footer content
parent
42a71e3b
Pipeline
#169
passed with stage
in 1 minute and 22 seconds
Changes
2
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
tedimg/__init__.py
tedimg/__init__.py
+1
-1
tedimg/templates/base.html
tedimg/templates/base.html
+2
-2
No files found.
tedimg/__init__.py
View file @
698f7ba8
...
...
@@ -9,7 +9,7 @@ app.config.update(
SITE_NAME
=
os
.
environ
.
get
(
"SITE_NAME"
,
"TedImg"
),
SOURCE_URL
=
"https://forge.tedomum.net/tedomum/tedimg"
,
HELP_URL
=
"https://forge.tedomum.net/tedomum/tedimg"
,
FOOTER_CONTENT
=
""
,
FOOTER_CONTENT
=
os
.
environ
.
get
(
"FOOTER_CONTENT"
,
""
)
,
FULL_STORAGE
=
os
.
environ
.
get
(
"FULL_STORAGE"
,
"/data"
),
THUMB_STORAGE
=
os
.
environ
.
get
(
"THUMB_STORAGE"
,
"/data/thumb"
),
FULL_WEB
=
os
.
environ
.
get
(
"FULL_WEB"
,
"data"
),
...
...
tedimg/templates/base.html
View file @
698f7ba8
...
...
@@ -19,8 +19,8 @@
<footer
class=
"page-footer blue"
>
<div
class=
"footer-copyright"
>
<div
class=
"container"
>
<span>
{{ config["FOOTER_CONTENT"] }}
</span>
<span
class=
"right"
><i
class=
"material-icons tiny"
>
call_split
</i>
<a
class=
"white-text"
href=
"{{ config["
SOURCE_URL
"]
}}"
>
the code
</a>
.
</a>
<span>
{{ config["FOOTER_CONTENT"]
| safe
}}
</span>
<span
class=
"right"
><i
class=
"material-icons tiny"
>
call_split
</i>
<a
class=
"white-text"
href=
"{{ config["
SOURCE_URL
"]
}}"
>
the code
</a>
.
</div>
</div>
</footer>
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment