Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Fachgruppenwebseite Metadaten
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fginfo
Fachgruppenwebseite Metadaten
Commits
34a3a8cf
Verified
Commit
34a3a8cf
authored
2 years ago
by
Jake
Browse files
Options
Downloads
Patches
Plain Diff
removed self-closing tag syntax
parent
f1305f8a
No related branches found
No related tags found
No related merge requests found
Pipeline
#323102
passed
2 years ago
Stage: build
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
theme/templates/base.html
+12
-12
12 additions, 12 deletions
theme/templates/base.html
theme/templates/macros/content_renderer.html
+1
-1
1 addition, 1 deletion
theme/templates/macros/content_renderer.html
theme/templates/macros/renderers.html
+3
-3
3 additions, 3 deletions
theme/templates/macros/renderers.html
with
16 additions
and
16 deletions
theme/templates/base.html
+
12
−
12
View file @
34a3a8cf
...
...
@@ -10,24 +10,24 @@
<html
lang=
"{{ l }}"
xmlns=
"http://www.w3.org/1999/xhtml"
>
<head>
{% block head %}
<meta
charset=
"utf-8"
/
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, viewport-fit=cover"
/
>
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, viewport-fit=cover"
>
<title>
{% block title %}{{ t[l].title_prefix }}{{ t[l].sitename }}{{ t[l].title_suffix }}{%endblock%}
</title>
<!-- <base target="_blank"> -->
<!-- <meta HTTP-EQUIV="REFRESH" content="500; url=#"> -->
<link
rel=
"preload"
href=
"{{ siteurl }}/{{ files[theme.css_file].link.url }}"
as=
"style"
/
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ siteurl }}/{{ files[theme.css_file].link.url }}"
/
>
<link
rel=
"preload"
href=
"{{ siteurl }}/{{ files[theme.css_file].link.url }}"
as=
"style"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"{{ siteurl }}/{{ files[theme.css_file].link.url }}"
>
<script
src=
"{{ siteurl }}/mathjax/tex-chtml.js"
id=
"MathJax-script"
async
></script>
{#- TODO load javascript? -#}
{#- TODO og: meta tags -#}
<link
rel=
"apple-touch-icon-precomposed"
type=
"image/png"
sizes=
"144x144"
href=
"{{ siteurl }}/{{ files["
favicon-144.png
"].
link.url
}}"
/
>
<link
rel=
"apple-touch-icon-precomposed"
type=
"image/png"
sizes=
"114x114"
href=
"{{ siteurl }}/{{ files["
favicon-114.png
"].
link.url
}}"
/
>
<link
rel=
"apple-touch-icon-precomposed"
type=
"image/png"
sizes=
"72x72"
href=
"{{ siteurl }}/{{ files["
favicon-72.png
"].
link.url
}}"
/
>
<link
rel=
"apple-touch-icon-precomposed"
type=
"image/png"
href=
"{{ siteurl }}/{{ files["
favicon-57.png
"].
link.url
}}"
/
>
<link
rel=
"icon"
type=
"image/png"
href=
"{{ siteurl }}/{{ files["
favicon-32.png
"].
link.url
}}"
/
>
<!-- <link rel="icon" type="image/png" sizes="192x192" href="static/img/favicon-192x192.png"
/
>
<link rel="icon" type="image/png" sizes="32x32" href="static/img/favicon-32x32.png"
/
>-->
<!-- <link rel="icon" type="image/x-icon" sizes="16x16" href="static/img/favicon.ico"
/
> -->
<link
rel=
"apple-touch-icon-precomposed"
type=
"image/png"
sizes=
"144x144"
href=
"{{ siteurl }}/{{ files["
favicon-144.png
"].
link.url
}}"
>
<link
rel=
"apple-touch-icon-precomposed"
type=
"image/png"
sizes=
"114x114"
href=
"{{ siteurl }}/{{ files["
favicon-114.png
"].
link.url
}}"
>
<link
rel=
"apple-touch-icon-precomposed"
type=
"image/png"
sizes=
"72x72"
href=
"{{ siteurl }}/{{ files["
favicon-72.png
"].
link.url
}}"
>
<link
rel=
"apple-touch-icon-precomposed"
type=
"image/png"
href=
"{{ siteurl }}/{{ files["
favicon-57.png
"].
link.url
}}"
>
<link
rel=
"icon"
type=
"image/png"
href=
"{{ siteurl }}/{{ files["
favicon-32.png
"].
link.url
}}"
>
<!-- <link rel="icon" type="image/png" sizes="192x192" href="static/img/favicon-192x192.png">
<link rel="icon" type="image/png" sizes="32x32" href="static/img/favicon-32x32.png">-->
<!-- <link rel="icon" type="image/x-icon" sizes="16x16" href="static/img/favicon.ico"> -->
{% block extra_head %}{% endblock extra_head %}
{% endblock head %}
</head>
...
...
This diff is collapsed.
Click to expand it.
theme/templates/macros/content_renderer.html
+
1
−
1
View file @
34a3a8cf
...
...
@@ -286,7 +286,7 @@
<div
class=
"lineblock"
>
{%- for line in lines -%}
{{ render_inlines(line, lang) }}
{%- if not loop.last -%}
<br
/
>
{%- endif -%}
{%- if not loop.last -%}
<br>
{%- endif -%}
{%- endfor -%}
</div>
{%- endmacro -%}
...
...
This diff is collapsed.
Click to expand it.
theme/templates/macros/renderers.html
+
3
−
3
View file @
34a3a8cf
...
...
@@ -61,9 +61,9 @@
{%- elif s.type == "relevant" -%}
{{ section_relevant(s, lang) }}
{%- else -%}
<br
/
>
<strong>
ERROR: render.section: Unknown section type: {{ s.type|e }}
</strong><br
/
>
<br
/
>
<br>
<strong>
ERROR: render.section: Unknown section type: {{ s.type|e }}
</strong><br>
<br>
{%- endif -%}
{%- endmacro -%}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment