-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #223 from maximedenes/coq-package-index-redirect
Add /coq-package-index and redirection
- Loading branch information
Showing
2 changed files
with
66 additions
and
63 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
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"> |
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 |
---|---|---|
@@ -1,63 +1,3 @@ | ||
<#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"> | ||
<head> | ||
<meta http-equiv="Refresh" content="0; URL=https://coq.inria.fr/coq-package-index" /> | ||
</head> |