Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
SRCT
go
Commits
4564a979
Verified
Commit
4564a979
authored
Apr 24, 2017
by
David Haynes
🙆
Browse files
Reformat base.html and include OG data
- Copy over the metadata from masonstrap Closes
#54
parent
6eef3dbb
Pipeline
#1293
passed with stage
in 1 minute and 39 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
go/go/templates/layouts/base.html
View file @
4564a979
...
...
@@ -6,54 +6,58 @@
<!-- Start the HTML page for Go -->
<html>
<!-- load in our header content for every page -->
<head>
<!-- load in the title block defined on each html page -->
<title>
{% block title %}
{% endblock %}
</title>
<!-- Some metadata -->
<meta
charset=
"UTF-8"
>
<meta
name=
"keywords"
content=
"George Mason, URL shortener, URL"
>
<meta
name=
"description"
content=
"University branded URL shortener."
>
<meta
name=
"author"
content=
"Mason SRCT"
>
<meta
name=
"robots"
content=
"all"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1"
>
<meta
name=
"theme-color"
content=
"#006633"
>
<!-- Load in our icon -->
<link
rel=
"icon"
type=
"image/ico"
href=
"{% static "
img
/
favicon.ico
"%}"
/>
<!-- Load in global CSS -->
<link
href=
"https://fonts.googleapis.com/css?family=Carrois+Gothic"
rel=
"stylesheet"
type=
"text/css"
>
<link
href=
"https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel=
"stylesheet"
type=
"text/css"
>
<link
rel=
"stylesheet"
href=
"{% static "
css
/
bootswatch.min.css
"
%}"
/>
<link
rel=
"stylesheet"
href=
"{% static "
css
/
styles.css
"
%}"
/>
<!-- Load in global js -->
<script
src=
"{% static "
js
/
jquery.min.js
"
%}"
></script>
<script
src=
"{% static "
js
/
bootstrap.min.js
"
%}"
></script>
<script
src=
"{% static "
js
/
clipboard.min.js
"
%}"
></script>
</head>
<!-- Load in the body of a Go page -->
<body>
<!-- Load in the navbar template -->
{% include 'layouts/navigation.html' %}
<!-- Wrap the page content in a container -->
<div
class=
"container"
>
<!-- Load in the main page content -->
{% block content %}
{% endblock %}
</div>
<!-- Load in the footer template -->
{% include 'layouts/footer.html' %}
</body>
</html>
<!-- load in our header content for every page -->
<head>
<!-- load in the title block defined on each html page -->
<title>
{% block title %}
{% endblock %}
</title>
<!-- Metatags -->
<meta
charset=
"utf-8"
>
<meta
name=
"viewport"
content=
"width=device-width, initial-scale=1, shrink-to-fit=no"
>
<meta
http-equiv=
"X-UA-Compatible"
content=
"IE=edge"
/>
<!-- Chrome on Android navbar color -->
<meta
name=
"theme-color"
content=
"#006633"
>
<!-- FB/Opengraph tags -->
<meta
property=
"og:url"
content=
"https://go.gmu.edu/"
>
<meta
property=
"og:type"
content=
"website"
>
<meta
property=
"og:title"
content=
"SRCT Go"
>
<!--<meta property="og:image" content="https://git.gmu.edu/uploads/project/avatar/10/noun_534670_cc.png">-->
<meta
property=
"og:description"
content=
"University-branded URL shortening."
>
<meta
property=
"og:site_name"
content=
"SRCT Go"
>
<meta
property=
"og:locale"
content=
"en_US"
>
<meta
property=
"article:author"
content=
"SRCT"
>
<!-- Load in our icon -->
<link
rel=
"icon"
type=
"image/ico"
href=
"{% static "
img
/
favicon.ico
"
%}"
/>
<!-- Load in global CSS -->
<link
href=
"https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
rel=
"stylesheet"
type=
"text/css"
>
<link
rel=
"stylesheet"
href=
"{% static "
css
/
bootswatch.min.css
"
%}"
/>
<link
rel=
"stylesheet"
href=
"{% static "
css
/
styles.css
"
%}"
/>
<!-- Load in global JS -->
<script
src=
"{% static "
js
/
jquery.min.js
"
%}"
></script>
<script
src=
"{% static "
js
/
bootstrap.min.js
"
%}"
></script>
<script
src=
"{% static "
js
/
clipboard.min.js
"
%}"
></script>
</head>
<!-- Load in the body of a Go page -->
<body>
<!-- Load in the navbar template -->
{% include 'layouts/navigation.html' %}
<!-- Wrap the page content in a bootstrap container -->
<div
class=
"container"
>
<!-- Load in the main page content -->
{% block content %}
{% endblock %}
</div>
<!-- Load in the footer template -->
{% include 'layouts/footer.html' %}
</body>
</html>
\ No newline at end of file
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