Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SWIFTweb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
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
SWIFT
SWIFTweb
Commits
e54a8d91
Commit
e54a8d91
authored
7 years ago
by
Josh Borrow
Browse files
Options
Downloads
Patches
Plain Diff
aded icons rather than ul styling
parent
05881d13
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
stylesheets/stylesheet.css
+7
-0
7 additions, 0 deletions
stylesheets/stylesheet.css
templates/contact.html
+6
-5
6 additions, 5 deletions
templates/contact.html
with
13 additions
and
5 deletions
stylesheets/stylesheet.css
+
7
−
0
View file @
e54a8d91
...
...
@@ -167,6 +167,13 @@ h1, h2, h3, h4, h5, h6 {
border-bottom-right-radius
:
4px
;
}
.icon-pad
{
width
:
2em
;
text-align
:
center
;
display
:
inline-block
;
}
/* Header Styes */
.header
{
...
...
This diff is collapsed.
Click to expand it.
templates/contact.html
+
6
−
5
View file @
e54a8d91
...
...
@@ -18,18 +18,19 @@
<div
class=
"text"
>
<h2>
People
</h2>
<p>
The following people are involved in SWIFT:
</p>
<ul>
<ul
style=
"list-style-type: none"
>
{% for person in people %}
<li>
<div
class=
"icon-pad"
><i
class=
"fa fa-user-circle"
></i></div>
{% if person.href %}
<a
href=
"{{ person.href }}"
>
{{ person.name }}
</a>
{% else %}
{{ person.name }}
{% endif %}
{% if person.role %} | {{ person.role }}{% endif %}
<ul>
<li>
{% if person.affil %}
{{ person.affil }}{% endif %}
</li>
{% if person.expertise %}
<li>
{{ person.expertise }}
</li>
{% endif %}
<ul
style=
"list-style-type: none"
>
{% if person.role %}
<li><div
class=
"icon-pad"
><i
class=
"fa fa-info"
></i></div>
{{ person.role }}
</li>
{% endif %}
{% if person.affil %}
<li><div
class=
"icon-pad"
><i
class=
"fa fa-home"
></i></div>
{{ person.affil }}
</li>
{% endif %}
{% if person.expertise %}
<li>
<div
class=
"icon-pad"
><i
class=
"fa fa-flask"
></i></div>
{{ person.expertise }}
</li>
{% endif %}
</ul>
</li>
{% endfor %}
...
...
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