Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
GraceDB Server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
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
Michael William Coughlin
GraceDB Server
Commits
cda8b8e0
Commit
cda8b8e0
authored
15 years ago
by
Brian Moe
Browse files
Options
Downloads
Patches
Plain Diff
Whoops. Forgot the secondary base template in last commit.
parent
9b7e5fa7
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
templates/base2.html
+86
-0
86 additions, 0 deletions
templates/base2.html
with
86 additions
and
0 deletions
templates/base2.html
0 → 100644
+
86
−
0
View file @
cda8b8e0
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns=
"http://www.w3.org/1999/xhtml"
xml:lang=
"en"
lang=
"en"
>
<head>
<link
rel=
"stylesheet"
href=
"/gracedb-static/css/style.css"
/>
<title>
GraceDb | {% block title %}{% endblock %}
</title>
<!-- START TESTING -->
<script
type=
"text/javascript"
>
function
changeTime
(
obj
,
label
)
{
var
timetype
=
obj
[
obj
.
selectedIndex
].
value
;
if
(
timetype
==
""
)
{
return
;
}
var
times
=
document
.
getElementsByName
(
"
time-
"
+
label
);
for
(
i
=
0
;
i
<
times
.
length
;
i
++
)
{
newtime
=
times
[
i
].
getAttribute
(
timetype
);
times
[
i
].
innerHTML
=
newtime
;
}
}
</script>
<!-- END TESTING -->
{% block jscript %}{% endblock %}
</head>
<body
id=
"{% block pageid %}{% endblock %}"
{%
block
bodyattrs
%}{%
endblock
%}
>
<div
id=
"content"
>
<center>
<h1>
GraceDB
—
Gravitational-wave Candidate Event Database
</h1>
</center>
{% block nav %}
<ul
id=
"nav"
>
<li
id=
"nav-home"
><a
href=
"{% url home %}"
>
Home
</a></li>
<li
id=
"nav-search"
><a
href=
"{% url search %}"
>
Search
</a></li>
<li
id=
"nav-create"
><a
href=
"{% url create %}"
>
Create
</a></li>
<li
id=
"nav-feeds"
><a
href=
"{% url feeds %}"
>
RSS
</a></li>
<li
id=
"nav-userprofile"
><a
href=
"{% url userprofile-home %}"
>
Options
</a></li>
{% if ligouser %}
<li
id=
"nav-user"
>
Authenticated as: {{ ligouser.name }}
</li>
{% endif %}
</ul>
{% endblock %}
<p>
</p>
<!-- bad way to create vertical space -->
{% load flash %}
{% flash %}
<div
id=
"status_block"
class=
"{{ params.class }}"
>
{{ msg }}
</div>
{% endflash %}
<h2>
{% block heading %}Title{% endblock %}
</h2>
{% block content %}{% endblock %}
</div>
<div
id=
"header"
>
<!-- Header -->
<table
align=
"center"
width=
"70%%"
>
<tr>
<td
align=
"center"
>
<img
width=
"52"
height=
"36"
src=
"/gracedb-static/images/ligo-blue.gif"
>
<!-- 673px 487px -->
</td>
<td
align=
"center"
>
<img
width=
"164"
height=
"30"
src=
"/gracedb-static/images/Virgo_logo50.png"
>
<!-- 4,829px 884px -->
</td>
<td
align=
"center"
>
<img
width=
"107"
height=
"37"
src=
"/gracedb-static/images/anim2.gif"
>
<!-- 287px 101px -->
</td>
<td
align=
"center"
>
<img
width=
"87"
height=
"37"
src=
"/gracedb-static/images/LSC_logo50.png"
>
<!-- 6,261px 2,652px -->
</td>
</tr>
</table>
<!-- End Header -->
</div>
</body>
</html>
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