-
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.
Adds basic static template that seems to work... Kinda
Requires us to avoid loading the material css because it seems impossible to get it to load correctly. We then need to have a specific body class so we know its a basic template so we can add some custom css to hide some of the material elements from the header
- Loading branch information
1 parent
68de28f
commit 8f6bde3
Showing
8 changed files
with
178 additions
and
68 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,3 @@ | ||
body { | ||
background: red; | ||
} |
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
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 +1,56 @@ | ||
# WAT | ||
--- | ||
template: static.html | ||
--- | ||
|
||
<div class="home-header-wrapper"> | ||
<div class="container home-hero"> | ||
<h1 class="home-hero__title">Mock the APIs You Depend On</h1> | ||
|
||
<div class="home-hero__boxes"> | ||
<div class="home-hero__box"> | ||
<h2 class="home-hero__heading"> | ||
<img | ||
src="/images/svg/source.svg" | ||
alt="source" | ||
class="home-hero__icon" | ||
/> | ||
Open Source | ||
</h2> | ||
<p> | ||
The core WireMock engine.<br /> | ||
Embed in your test code, run as a standalone process, or deploy via | ||
Docker. | ||
</p> | ||
|
||
<div> | ||
<a href="#opensource" class="btn t-6">Learn more</a> | ||
</div> | ||
</div> | ||
<div class="home-hero__box home-hero__box--alt"> | ||
<h2 class="home-hero__heading"> | ||
<img | ||
src="/images/svg/cloud.svg" | ||
alt="cloud" | ||
class="home-hero__icon" | ||
/> | ||
Cloud | ||
</h2> | ||
|
||
<div> | ||
<p> | ||
Web UI with team collaboration, OpenAPI + Swagger support, and chaos | ||
testing. | ||
</p> | ||
<p>Start on the generous free-forever tier:</p> | ||
</div> | ||
<div> | ||
<a | ||
href="https://www.wiremock.io/product?utm_source=wiremock.org&utm_medium=referral&utm_campaign=exp_hero" | ||
class="btn t-6 btn--inverse" | ||
>Get Started</a | ||
> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> |
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
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,18 @@ | ||
// As its not easy to override the main material themes contents we need to do some nasty modification to styles | ||
// This file contains the overrides we need to make a minimal static page in the style of the original site | ||
|
||
.static { | ||
font-family: "DMSans", "Segoe UI", "Helvetica Neue", "Lucida Grande", Arial, sans-serif; | ||
color: #0f0f0f; | ||
font-size: 18px; | ||
line-height: 1.5; | ||
|
||
a { | ||
text-decoration: none; | ||
} | ||
|
||
.md-nav__button { | ||
display: none; | ||
} | ||
} | ||
|
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 |
---|---|---|
|
@@ -5,3 +5,4 @@ | |
@import "_docs_root"; | ||
@import "_buttons"; | ||
@import "_homepage"; | ||
@import "_static"; |