-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add standalone template for commercial support page
- Loading branch information
1 parent
155dba0
commit 77a4e07
Showing
3 changed files
with
63 additions
and
6 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,49 @@ | ||
{% import "partials/language.html" as lang with context %} | ||
<!DOCTYPE html lang="{{ lang.t('language') }}" class="no-js"> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8" /> | ||
<meta | ||
name="viewport" | ||
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0" | ||
/> | ||
<meta http-equiv="X-UA-Compatible" content="ie=edge" /> | ||
<title>WireMock - flexible, open source API mocking | WireMock</title> | ||
{% for path in config.theme.css %} | ||
<link rel="stylesheet" href="{{ path | url }}" /> | ||
{% endfor %} {% for path in config.extra_css %} | ||
<link rel="stylesheet" href="{{ path | url }}" /> | ||
{% endfor %} | ||
<link | ||
href="https://fonts.googleapis.com/css?family=DM+Sans:300,300i,400,400i,700,700i%7CRoboto+Mono:400,400i,700,700i&display=fallback" | ||
rel="stylesheet" | ||
/> | ||
<link rel="shortcut icon" type="image/x-icon" href="/images/favicon.svg" /> | ||
</head> | ||
<body class="static"> | ||
{% set staticPage = true %} {% include "partials/header.html" %} {% block | ||
content %} | ||
<main class="content">{{ page.content }}</main> | ||
{% endblock %} | ||
|
||
<div class="page__footer"> | ||
<footer> | ||
<div class="page__footer-copyright"> | ||
<img src="/images/shortLogo.png" class="short-logo" /> | ||
<span class="footer-copyright-description">© 2024</span> | ||
<ul class="footer-social-links"> | ||
<li> | ||
<a href="http://github.com/wiremock" target="_blank"> | ||
<img src="/images/githubIcon.svg" /> | ||
</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</footer> | ||
</div> | ||
|
||
{% for path in config.extra_javascript %} | ||
<script src="{{ path | url }}"></script> | ||
{% endfor %} | ||
</body> | ||
</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
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