Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dominik-george.de
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Nik | Klampfradler
dominik-george.de
Commits
0453273f
Verified
Commit
0453273f
authored
7 years ago
by
Nik | Klampfradler
Browse files
Options
Downloads
Patches
Plain Diff
Add alternative meta info form simple theme.
parent
4a00df8b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
theme/templates/base.html
+25
-1
25 additions, 1 deletion
theme/templates/base.html
with
25 additions
and
1 deletion
theme/templates/base.html
+
25
−
1
View file @
0453273f
<!DOCTYPE html>
<html
lang=
"{{ DEFAULT_LANG }}"
>
<head>
<meta
http-equiv=
"Content-Type"
content=
"text/html; charset=utf-8"
/>
<meta
charset=
"utf-8"
/>
{% if FEED_ALL_ATOM %}
<link
href=
"{{ FEED_DOMAIN }}/{{ FEED_ALL_ATOM }}"
type=
"application/atom+xml"
rel=
"alternate"
title=
"{{ SITENAME }} Full Atom Feed"
/>
{% endif %}
{% if FEED_ALL_RSS %}
<link
href=
"{{ FEED_DOMAIN }}/{{ FEED_ALL_RSS }}"
type=
"application/rss+xml"
rel=
"alternate"
title=
"{{ SITENAME }} Full RSS Feed"
/>
{% endif %}
{% if FEED_ATOM %}
<link
href=
"{{ FEED_DOMAIN }}/{{ FEED_ATOM }}"
type=
"application/atom+xml"
rel=
"alternate"
title=
"{{ SITENAME }} Atom Feed"
/>
{% endif %}
{% if FEED_RSS %}
<link
href=
"{{ FEED_DOMAIN }}/{{ FEED_RSS }}"
type=
"application/rss+xml"
rel=
"alternate"
title=
"{{ SITENAME }} RSS Feed"
/>
{% endif %}
{% if CATEGORY_FEED_ATOM and category %}
<link
href=
"{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_ATOM|format(category.slug) }}"
type=
"application/atom+xml"
rel=
"alternate"
title=
"{{ SITENAME }} Categories Atom Feed"
/>
{% endif %}
{% if CATEGORY_FEED_RSS and category %}
<link
href=
"{{ FEED_DOMAIN }}/{{ CATEGORY_FEED_RSS|format(category.slug) }}"
type=
"application/rss+xml"
rel=
"alternate"
title=
"{{ SITENAME }} Categories RSS Feed"
/>
{% endif %}
{% if TAG_FEED_ATOM and tag %}
<link
href=
"{{ FEED_DOMAIN }}/{{ TAG_FEED_ATOM|format(tag.slug) }}"
type=
"application/atom+xml"
rel=
"alternate"
title=
"{{ SITENAME }} Tags Atom Feed"
/>
{% endif %}
{% if TAG_FEED_RSS and tag %}
<link
href=
"{{ FEED_DOMAIN }}/{{ TAG_FEED_RSS|format(tag.slug) }}"
type=
"application/rss+xml"
rel=
"alternate"
title=
"{{ SITENAME }} Tags RSS Feed"
/>
{% endif %}
<link
rel=
"stylesheet"
href=
"{{ SITEURL }}/static/master.css"
/>
<link
rel=
"stylesheet"
href=
"{{ SITEURL }}/static/colors.css"
/>
<title>
{% block title %}{% endblock %} · {{ SITENAME }}
</title>
...
...
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