-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
4 changed files
with
623 additions
and
57 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 |
---|---|---|
@@ -1,6 +1,7 @@ | ||
title: Amplify Integration Labs | ||
description: Self-paced hands-on labs to discover the product | ||
show_downloads: false | ||
remote_theme: pages-themes/[email protected] | ||
show_repository: false | ||
remote_theme: pages-themes/[email protected] | ||
plugins: | ||
- jekyll-remote-theme # add this line to the plugins list if you already have one | ||
- jekyll-remote-theme # add this line to the plugins list if you already have one |
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,43 +1,61 @@ | ||
<!DOCTYPE html> | ||
<!doctype html> | ||
<html lang="{{ site.lang | default: "en-US" }}"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | ||
|
||
|
||
<link rel="preconnect" href="https://fonts.gstatic.com"> | ||
<link rel="preload" href="https://fonts.googleapis.com/css?family=Open+Sans:400,700&display=swap" as="style" type="text/css" crossorigin> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<meta name="theme-color" content="#157878"> | ||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent"> | ||
{% seo %} | ||
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}"> | ||
<link rel="shortcut icon" type="image/png" href="{{ "Axway_Favicon.png" | absolute_url }}"> | ||
<script src="https://code.jquery.com/jquery-3.3.0.min.js" integrity="sha256-RTQy8VOmNlT6b2PIRur37p6JEBZUE7o8wPgMvu18MC4=" crossorigin="anonymous"></script> | ||
<script src="{{ '/assets/js/main.js' | relative_url }}"></script> | ||
<!--[if lt IE 9]> | ||
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.min.js" integrity="sha256-3Jy/GbSLrg0o9y5Z5n1uw0qxZECH7C6OQpVBgNFYa0g=" crossorigin="anonymous"></script> | ||
<![endif]--> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, user-scalable=no"> | ||
|
||
{% include head-custom.html %} | ||
</head> | ||
<body> | ||
<a id="skip-to-content" href="#content">Skip to the content.</a> | ||
|
||
<header class="page-header" role="banner"> | ||
<h1 class="project-name">{{ site.title | default: site.github.repository_name }}</h1> | ||
<h2 class="project-tagline">{{ site.description | default: site.github.project_tagline }}</h2> | ||
|
||
{% if site.show_downloads %} | ||
<a href="{{ site.github.zip_url }}" class="btn">Download .zip</a> | ||
<a href="{{ site.github.tar_url }}" class="btn">Download .tar.gz</a> | ||
{% endif %} | ||
<div class="inner"> | ||
<img style="float: right;" width="100" height="100" alt="logo" src="https://avatars.githubusercontent.com/u/5559759"> | ||
|
||
</div> | ||
</header> | ||
|
||
<main id="content" class="main-content" role="main"> | ||
{{ content }} | ||
|
||
<footer class="site-footer"> | ||
|
||
<p>This page is maintained by <a href="https://university.axway.com">Axway University</a>.</p> | ||
|
||
|
||
<header> | ||
<h1>{{ site.title | default: site.github.repository_name }}</h1> | ||
<p>{{ site.description | default: site.github.project_tagline }}</p> | ||
</header> | ||
|
||
<div id="banner"> | ||
<span id="logo"><img alt="logo" src="https://avatars.githubusercontent.com/u/5559759"></span> | ||
|
||
{% if site.show_repository %} | ||
<a href="{{ site.github.repository_url }}" class="button fork"><strong>View On GitHub</strong></a> | ||
{% endif %} | ||
{% if site.show_downloads %} | ||
<div class="downloads"> | ||
<span>Downloads:</span> | ||
<ul> | ||
<li><a href="{{ site.github.zip_url }}" class="button">ZIP</a></li> | ||
<li><a href="{{ site.github.tar_url }}" class="button">TAR</a></li> | ||
</ul> | ||
</div> | ||
{% endif %} | ||
</div><!-- end banner --> | ||
|
||
<div class="wrapper"> | ||
<nav> | ||
<ul></ul> | ||
</nav> | ||
<section> | ||
{{ content }} | ||
<script src="{{ '/assets/js/copy-code-to-clipboard.js' | relative_url }}"></script> | ||
|
||
|
||
</section> | ||
<footer> | ||
{% if site.github.is_project_page %} | ||
<!-- p>Project maintained by <a href="{{ site.github.owner_url }}">{{ site.github.owner_name }}</a></p --> | ||
<p>This page is maintained by <a href="https://university.axway.com">Axway University</a>.</p> | ||
{% endif %} | ||
<!-- p><small>Hosted on GitHub Pages — Theme by <a href="https://twitter.com/mattgraham">mattgraham</a></small></p --> | ||
</footer> | ||
</main> | ||
</div> | ||
</body> | ||
</html> | ||
</html> |
Oops, something went wrong.