Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
S
srct.gmu.io
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
SRCT
srct.gmu.io
Commits
2cd59472
Commit
2cd59472
authored
Apr 05, 2018
by
Daniel W Bond
Browse files
Options
Browse Files
Download
Plain Diff
conflict because of the beginning slash change I'd just pushed
parents
4f743894
7a1e235d
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
14 additions
and
6 deletions
+14
-6
srctweb/_data/people.json
srctweb/_data/people.json
+8
-0
srctweb/_includes/scripts.html
srctweb/_includes/scripts.html
+1
-1
srctweb/_pages/home.html
srctweb/_pages/home.html
+1
-1
srctweb/_pages/people.html
srctweb/_pages/people.html
+1
-1
srctweb/_plugins/gravatar.rb
srctweb/_plugins/gravatar.rb
+3
-3
No files found.
srctweb/_data/people.json
View file @
2cd59472
...
...
@@ -435,4 +435,12 @@
"status"
:
false
}
},
{
"name"
:
"Ashlyn Gill"
,
"email"
:
"agill15@gmu.edu"
,
"alum"
:
false
,
"exec"
:
{
"status"
:
false
}
},
]
srctweb/_includes/scripts.html
View file @
2cd59472
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"
integrity=
"sha256-hwg4gsxgFZhOsEEamdOYGBf13FyQuiTwlAQgxVSNgt4="
crossorigin=
"anonymous"
></script>
<script
src=
"https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.11.0/umd/popper.min.js"
integrity=
"sha384-b/U6ypiBEHpOf/4+1nzFpr53nxSS+GLCkfwBdFNTxtclqqenISfwAzpKaMNFNmj4"
crossorigin=
"anonymous"
></script>
<script
src=
"https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta/js/bootstrap.min.js"
integrity=
"sha384-h0AbiXch4ZDo7tp9hKZ4TsHbi047NrKGLO3SEJAg45jXxnGIfYzk4Si90RDIqNm1"
crossorigin=
"anonymous"
></script>
<script
src=
"assets/js/functions.js"
></script>
<script
src=
"
/
assets/js/functions.js"
></script>
{% if page.tablesorter_js %}
<script
src=
"/assets/js/jquery.tablesorter.min.js"
></script>
{% endif %}
srctweb/_pages/home.html
View file @
2cd59472
...
...
@@ -128,7 +128,7 @@ jumbotron: true
the diversity of our membership. In working to benefit the whole Mason
community, we need input from as many of our diverse campus' perspectives as
possible. Women and students from minority groups are welcomed and encouraged to
participate and join. And if you're in CS 1
01
, come say hello!
</p>
participate and join. And if you're in CS 1
10
, come say hello!
</p>
</div>
<!-- Outreach & Community Image -->
...
...
srctweb/_pages/people.html
View file @
2cd59472
...
...
@@ -50,7 +50,7 @@ tablesorter_js: true
</thead>
<tbody>
{% for member in site.data.people %}
{% if member.alum == false %}
{% if member.alum == false
and member.exec.position != 'Faculty Advisor'
%}
<tr>
<td><img
class=
"member-image"
src=
"{{ member.email | get_gravatar }}"
alt=
"gravatar image"
></td>
<td
class=
"align-middle"
>
{{ member.name }}
</td>
...
...
srctweb/_plugins/gravatar.rb
View file @
2cd59472
# from https://tlattimore.com/blog/using-gravatar-in-jekyll/
#
modified
from https://tlattimore.com/blog/using-gravatar-in-jekyll/
require
'digest/md5'
module
Jekyll
module
GravatarFilter
# Add our new liquid filter.
def
get_gravatar
(
input
)
"//www.gravatar.com/avatar/
#{
hash
(
input
)
}
"
"//www.gravatar.com/avatar/
#{
hash
(
input
)
}
?d=mm
"
end
private
:hash
...
...
@@ -18,4 +18,4 @@ module Jekyll
end
end
Liquid
::
Template
.
register_filter
(
Jekyll
::
GravatarFilter
)
\ No newline at end of file
Liquid
::
Template
.
register_filter
(
Jekyll
::
GravatarFilter
)
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