-
Notifications
You must be signed in to change notification settings - Fork 90
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 #63 from Joe-Brady/platform-rewrite
Latest release/Archive pages now accept any platform, plus fixes
- Loading branch information
Showing
31 changed files
with
838 additions
and
803 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,115 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge"> | ||
<title>Archive - AdoptOpenJDK</title> | ||
<link rel="shortcut icon" href="dist/assets/favicon.ico" type="image/x-icon"> | ||
<link rel="icon" href="dist/assets/favicon.ico" type="image/x-icon"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/5.0.0/normalize.min.css"> | ||
<link rel="stylesheet" href="dist/css/styles.min.css"> | ||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300,400" rel="stylesheet"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.css"> | ||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/animate.css/3.5.2/animate.min.css"> | ||
<script src="https://www.w3schools.com/lib/w3data.js"></script> | ||
</head> | ||
|
||
<body class="blue-bg"> | ||
|
||
<div id="menu-container" class="grey-bg hide slideInLeft"> | ||
<div id="menu-header"> | ||
<i id="menu-close" class="fa fa-arrow-circle-left" aria-hidden="true"></i> | ||
</div> | ||
<div id="menu-content"> | ||
<p><a href="./index.html">Home</a></p> | ||
<p><a href="./releases.html">Latest release</a></p> | ||
<p><a href="./archive.html">Release archive</a></p> | ||
<p><a href="./nightly.html">Nightly builds</a></p> | ||
<p><a href="./installation.html">Installation</a></p> | ||
<p><a href="./getinvolved.html">Get involved</a></p> | ||
<p><a href="./support.html">Support</a></p> | ||
<p><a href="./about.html">About</a></p> | ||
</div> | ||
</div> | ||
|
||
<nav> | ||
<i id="menu-button" class="fa fa-bars" aria-hidden="true"></i> | ||
<a id="logo" href="./index.html" class="a-button"> | ||
<div><img src="dist/assets/squares-logo.png"></div> | ||
<div><span>AdoptOpenJDK</span></div> | ||
</a> | ||
</nav> | ||
<div w3-include-html="./banner.html"></div> | ||
<script> | ||
w3IncludeHTML(); | ||
</script> | ||
|
||
<main class="grey-bg"> | ||
|
||
<div id="archives-page"> | ||
<h1 class="large-title">Archive</h1> | ||
<a href="./releases.html" id="latest-button" class="blue-button a-button"> | ||
<div> | ||
<span>See the latest release</span> | ||
<i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> | ||
</div> | ||
</a> | ||
<a href="./nightly.html" id="nightly-button" class="grey-button a-button"> | ||
<div> | ||
<span>See the nightly builds</span> | ||
<i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i> | ||
</div> | ||
</a> | ||
|
||
<div id="archive-loading"><img src="dist/assets/loading_dots.gif" width="40" height="40"></div> | ||
|
||
<div id="filter-container" class="hide"> | ||
<h3 class="inline-block" style="margin: 2rem .5rem 1rem 0;">Filter by platform:</h3> | ||
<select id="platform-dropdown"> | ||
<option value="ALL">All</option> | ||
</select> | ||
</div> | ||
|
||
<div id="archive-list" class="hide"> | ||
<table class='archive-container'> | ||
<tbody id='archive-table-body'></tbody> | ||
</table> | ||
</div> | ||
|
||
</div> | ||
|
||
<div id="error-container"></div> | ||
|
||
</main> | ||
|
||
<footer> | ||
<div class="margin-auto"> | ||
<div class="footer-icon align-center inline-block"> | ||
<a href="https://github.com/AdoptOpenJDK" target="_blank" class="light-link no-underline"> | ||
<img src="dist/assets/GitHub.png" alt="" class="footer-logo"> | ||
<p class="margin-auto">GitHub repos</p> | ||
</a> | ||
</div> | ||
|
||
<div class="footer-icon align-center inline-block"> | ||
<a href="https://ci.adoptopenjdk.net" target="_blank" class="light-link no-underline"> | ||
<img src="dist/assets/jenkins_headshot.png" alt="" class="footer-logo"> | ||
<p class="margin-auto">Jenkins CI</p> | ||
</a> | ||
</div> | ||
</div> | ||
|
||
<a href="https://github.com/AdoptOpenJDK/openjdk-build/issues" target="_blank"class="light-link no-underline"> | ||
<p class="inline-block zero-margin" style="margin-bottom: 1rem;">Having issues? <i class="fa fa-arrow-circle-o-right" aria-hidden="true"></i></p> | ||
</a> | ||
<p>Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates. Other names may be trademarks of their respective owners.</p> | ||
</footer> | ||
|
||
<script src="dist/js/app.min.js"></script> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/moment.js/2.18.0/moment.js"></script> | ||
<script>onArchiveLoad();</script> | ||
|
||
</body> | ||
</html> |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Large diffs are not rendered by default.
Oops, something went wrong.
Oops, something went wrong.