-
Notifications
You must be signed in to change notification settings - Fork 165
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6a66a64
commit a43844b
Showing
2 changed files
with
64 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
<#def TITLE>Coq Package Index</#def> | ||
<#def HEAD> | ||
<link rel="stylesheet" type="text/css" href="/styles/barron/style.css"/> | ||
<link rel="stylesheet" type="text/css" href="/styles/package-index.css"/> | ||
</#def> | ||
<#include "incl/header.html"> | ||
<div id="filters"> | ||
|
||
<div class="framework"> | ||
<div class="frameworklabel" style="color:black;font-weight:bold"> | ||
Active filters | ||
</div> | ||
<div class="frameworkcontent"> | ||
<input type="text" id="custom-filter" onkeyup="update_filter()" autofocus> | ||
<div id="f-selected"> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
<div class="framework"> | ||
<div class="frameworklabel" style="color:black;font-weight:bold"> | ||
Available suites | ||
</div> | ||
<div class="frameworkcontent"> | ||
<div id="f-suites"> <!-- filled in by js --> </div> | ||
</div> | ||
</div> | ||
|
||
<div class="framework"> | ||
<div class="frameworklabel" style="color:black;font-weight:bold"> | ||
Available categories | ||
</div> | ||
<div class="frameworkcontent"> | ||
<div id="f-categories"> <!-- filled in by js --> </div> | ||
</div> | ||
</div> | ||
|
||
<div class="framework"> | ||
<div class="frameworklabel" style="color:black;font-weight:bold"> | ||
Available keywords | ||
</div> | ||
<div class="frameworkcontent"> | ||
<div id="f-keywords"> <!-- filled in by js --> </div> | ||
<div class="clear"> <!-- stop floating contents --> </div> | ||
</div> | ||
</div> | ||
|
||
</div> | ||
|
||
<div id="packages"> | ||
<div class="frameworkcontent"> | ||
<table> | ||
<tbody id="data"> | ||
</tbody> | ||
</table> | ||
</div> | ||
|
||
</div> | ||
|
||
<script src="/scripts/filter.js"/></script> | ||
<script src="/scripts/packages.js"></script> | ||
|
||
<#include "incl/footer.html"> |