Add new kompose site (#1475)
Adds the new kompose site and moves it to the /docs folder so that it's compatible with old links as well as gh-pages
This commit is contained in:
@@ -0,0 +1,42 @@
|
||||
<!-- Footer -->
|
||||
<div class="footer">
|
||||
<div class="container text-center">
|
||||
<span class="copyright">
|
||||
We are a Kubernetes incubator graduated project and officially part of the Kubernetes group
|
||||
<br>
|
||||
Apache License 2.0 licensed project
|
||||
<br>
|
||||
© {{ site.year }} Kompose Authors -- All Rights Reserved
|
||||
</span>
|
||||
</div>
|
||||
<div class="container">
|
||||
<div class="row text-center">
|
||||
<div class="col-lg-2 col-md-3 col-sm-12">
|
||||
<div class="footer-logo">
|
||||
<h2>{{ site.name }}</h2>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-6 col-md-6 col-sm-12">
|
||||
<ul class="footer-menu">
|
||||
<!--
|
||||
{% for item in site.data.menu.footer %}
|
||||
<li><a href="{{ item[1] }}">{{ item[0] }}</a></li>
|
||||
{% endfor %}
|
||||
-->
|
||||
|
||||
</ul>
|
||||
</div>
|
||||
<div class="col-lg-4 col-md-3 col-sm-12">
|
||||
<div class="footer-links">
|
||||
<ul>
|
||||
<li><a href="{{ site.slack_page }}" target="_blank"><img class="img-fluid" src="/assets/icons/slack.png" alt="Slack">Slack</a> </li>
|
||||
<li><a href="{{ site.github_page }}" target="_blank"><img class="img-fluid" src="/assets/icons/github.png" alt="GitHub">GitHub</a> </li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<!-- Scroll To Top -->
|
||||
<!--<a id="back-top" class="back-to-top js-scroll-trigger" href="#main"></a>-->
|
||||
<!-- Scroll To Top Ends-->
|
||||
</div>
|
||||
</div>
|
||||
@@ -0,0 +1,46 @@
|
||||
<!-- Meta -->
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="description" content="{{site.description}}">
|
||||
|
||||
<!-- Cross-site Meta -->
|
||||
<meta name="robots" content="index, follow">
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
|
||||
<meta name="language" content="English">
|
||||
|
||||
<!-- Metadata loading stuff-->
|
||||
<link href="/assets/css/bootstrap.min.css" rel="stylesheet" type="text/css" media="all" />
|
||||
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.4.1/css/bootstrap.min.css" integrity="sha384-Vkoo8x4CGsO3+Hhxv8T/Q5PaXtkKtu6ug5TOeNV6gBiFeWPGFN9MuhOf23Q9Ifjh" crossorigin="anonymous">
|
||||
<link href="https://fonts.googleapis.com/css?family=Open+Sans:200,300,400,400i,500,600,700%7CMontserrat:300,400,500%7CRoboto" rel="stylesheet">
|
||||
<link rel="stylesheet" href="/assets/css/animate.css"> <!-- Resource style -->
|
||||
<link rel="stylesheet" href="/assets/css/owl.carousel.css">
|
||||
<link rel="stylesheet" href="/assets/css/owl.theme.css">
|
||||
<link rel="stylesheet" href="/assets/css/magnific-popup.css">
|
||||
<link rel="stylesheet" href="/assets/css/ionicons.min.css"> <!-- Resource style -->
|
||||
<link rel="stylesheet" href="/assets/css/style.css">
|
||||
<link rel="stylesheet" href="/assets/css/github-markdown.css">
|
||||
|
||||
|
||||
<!-- Favicons -->
|
||||
<!-- Generate using: https://realfavicongenerator.net/ and put information in /assets/favicons/ folder -->
|
||||
<link rel="apple-touch-icon" sizes="180x180" href="/assets/favicons/apple-touch-icon.png">
|
||||
<link rel="icon" type="image/png" sizes="32x32" href="/assets/favicons/favicon-32x32.png">
|
||||
<link rel="icon" type="image/png" sizes="16x16" href="/assets/favicons/favicon-16x16.png">
|
||||
<link rel="manifest" href="/assets/favicons/site.webmanifest">
|
||||
<link rel="mask-icon" href="/assets/favicons/safari-pinned-tab.svg" color="#5bbad5">
|
||||
<link rel="shortcut icon" href="/assets/favicons/favicon.ico">
|
||||
<meta name="msapplication-TileColor" content="#da532c">
|
||||
<meta name="msapplication-config" content="/assets/favicons/browserconfig.xml">
|
||||
<meta name="theme-color" content="#ffffff">
|
||||
|
||||
<!-- ANALYTICS -->
|
||||
<!-- Global site tag (gtag.js) - Google Analytics -->
|
||||
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.analytics }}"></script>
|
||||
<script>
|
||||
window.dataLayer = window.dataLayer || [];
|
||||
function gtag(){dataLayer.push(arguments);}
|
||||
gtag('js', new Date());
|
||||
|
||||
gtag('config', '{{ site.analytics }}');
|
||||
</script>
|
||||
|
||||
@@ -0,0 +1,18 @@
|
||||
<!-- Navbar Section -->
|
||||
<nav class="navbar navbar-expand-md navbar-light bg-light fixed-top">
|
||||
<div class="container">
|
||||
<a class="navbar-brand" href="/">
|
||||
<img class="navbar-logo" src="/assets/images/logo.png" alt="logo"/>
|
||||
</a>
|
||||
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation">
|
||||
<span class="navbar-toggler-icon"></span>
|
||||
</button>
|
||||
<div class="collapse navbar-collapse" id="navbarSupportedContent">
|
||||
<ul class="navbar-nav ml-auto navbar-right">
|
||||
{% for item in site.data.menu.other_links %}
|
||||
<li class="nav-item"><a class="nav-link" href="{{ item[1] }}">{{ item[0] }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</nav><!-- Navbar End -->
|
||||
Reference in New Issue
Block a user