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
4f743894
Commit
4f743894
authored
Apr 05, 2018
by
Daniel W Bond
Browse files
added initial ids and script for tablesorter js
parent
8b9d656c
Changes
1
Hide whitespace changes
Inline
Side-by-side
srctweb/_pages/people.html
View file @
4f743894
...
...
@@ -2,10 +2,10 @@
title: "People"
description: "The people who make up this community of developers!"
permalink: /people/
tablesorter_css: true
tablesorter_js: true
---
<script
type=
"text/javascript"
src=
"assets/js/jquery.tablesorter.min.js"
></script>
<!-- Exec Table -->
<h3>
<strong><a
href=
"http://wiki.srct.gmu.edu/Executive_Board"
>
Executive Board
</a></strong>
...
...
@@ -40,12 +40,12 @@ permalink: /people/
<h3>
<strong><a
href=
"http://wiki.srct.gmu.edu/Developers"
>
Developers
</a></strong>
</h3>
<table
class=
"table table-hover text-center"
>
<table
id=
"devs-table"
class=
"table table-hover text-center"
>
<thead>
<tr>
<th></th>
<th
data-sorter=
"false"
></th>
<th><h4>
Name
</h4></th>
<th><h4>
Email
</h4></th>
<th
data-sorter=
"false"
><h4>
Email
</h4></th>
</tr>
</thead>
<tbody>
...
...
@@ -67,12 +67,12 @@ permalink: /people/
<h3>
<strong><a
href=
"#"
>
Alumni
</a></strong>
</h3>
<table
class=
"table table-hover text-center"
>
<table
id=
"alums-table"
class=
"table table-hover text-center"
>
<thead>
<tr>
<th></th>
<th
data-sorter=
"false"
></th>
<th><h4>
Name
</h4></th>
<th><h4>
Email
</h4></th>
<th
data-sorter=
"false"
><h4>
Email
</h4></th>
</tr>
</thead>
<tbody>
...
...
@@ -89,3 +89,15 @@ permalink: /people/
</table>
</div>
</div>
<script>
$
(
function
()
{
$
(
"
#devs-table
"
).
tablesorter
(
theme
:
"
bootstrap
"
,
{
sortList
:
[[
1
,
0
]]}
);
$
(
"
#alums-table
"
).
tablesorter
(
{
sortList
:
[[
1
,
0
]]}
);
});
</script>
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