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
srct.gmu.io
Commits
2cd59472
Commit
2cd59472
authored
Apr 05, 2018
by
Daniel W Bond
Browse files
conflict because of the beginning slash change I'd just pushed
parents
4f743894
7a1e235d
Changes
5
Show whitespace changes
Inline
Side-by-side
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
0
1, come say hello!
</p>
participate and join. And if you're in CS 11
0
, 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
...
...
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