-
Notifications
You must be signed in to change notification settings - Fork 361
Expand file tree
/
Copy pathscriptListPage.html
More file actions
49 lines (49 loc) · 1.32 KB
/
scriptListPage.html
File metadata and controls
49 lines (49 loc) · 1.32 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<!DOCTYPE html>
<html>
<head>
<title>{{title}}</title>
{{> includes/head.html }}
</head>
<body>
{{> includes/header.html }}
<div class="container-fluid">
<div class="row">
<div class="col-sm-8">
<h2 class="page-heading">
{{pageHeading}}
</h2>
{{#paginationRendered}}
<div class="text-center collapse">
{{{paginationRendered}}}
</div>
{{/paginationRendered}}
<div class="panel panel-default">
{{> includes/scriptList.html }}
</div>
{{#paginationRendered}}
<div class="text-center">
{{{paginationRendered}}}
</div>
{{/paginationRendered}}
</div>
<div class="col-sm-4">
{{> includes/searchBarPanel.html }}
{{#isFlagged}}
{{#isAdmin}}
{{> includes/flagAdminToolFlaggedFilters.html }}
{{/isAdmin}}
{{/isFlagged}}
{{> includes/popularGroupsPanel.html }}
{{> includes/announcementsPanel.html }}
</div>
</div>
</div>
{{> includes/footer.html }}
{{#paginationRendered}}
{{> includes/scripts/showTopPagination.html }}
{{/paginationRendered}}
{{> includes/scripts/tableTrLinkScript.html }}
{{> includes/scripts/lazyIconScript.html }}
{{> includes/scripts/formControlClear.html }}
</body>
</html>