Sync site

This commit is contained in:
Charlie Drage 2022-01-14 09:03:45 -05:00
parent 7b3b812736
commit b796ec0222
6 changed files with 22 additions and 21 deletions

4
.gitignore vendored
View File

@ -9,11 +9,13 @@ bin
/docker-compose.yml /docker-compose.yml
changes.txt changes.txt
# Ignore built site # Ignore site documents / when switching branches
docs/_site/ docs/_site/
docs/.jekyll-cache/ docs/.jekyll-cache/
docs/.git/ docs/.git/
docs/.gitignore docs/.gitignore
_site/
.jekyll-cache/
# #
# GO SPECIFIC # GO SPECIFIC

View File

@ -5,5 +5,3 @@ bundle exec jekyll serve .
``` ```
And visiting `localhost:4000` on your browser. And visiting `localhost:4000` on your browser.
This website is synced to the `gh-pages` branch.

View File

@ -6,6 +6,7 @@
<meta charset="utf-8"> <meta charset="utf-8">
<title>{{ site.title }} - {{ page.title }}</title> <title>{{ site.title }} - {{ page.title }}</title>
<meta name="title" content="{{ site.title }} - {{ page.title }}"> <meta name="title" content="{{ site.title }} - {{ page.title }}">
<meta name="viewport" content="width=device-width, initial-scale=1">
{% include meta.html %} {% include meta.html %}
@ -19,13 +20,9 @@
<div class="first"><!-- Hero Section--> <div class="first"><!-- Hero Section-->
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<div class="hero-content wow fadeIn"> <div class="markdown-body">
<div class="hero-content-inner">
<div class="style markdown-body">
{{ content }} {{ content }}
</div> </div>
</div>
</div>
</div> </div>
<div class="questions flex-out align-center wow fadeIn"> <div class="questions flex-out align-center wow fadeIn">

View File

@ -421,7 +421,7 @@ body {
} }
.first { .first {
padding: 110px 10px 75px 0 !important; padding: 110px 0 75px 0 !important;
background: #F7F7F8; background: #F7F7F8;
} }
@ -3679,19 +3679,19 @@ font-family: "Open Sans";
background: #F7F7F8; background: #F7F7F8;
} }
.markdown-body { .markdown-body {
box-sizing: border-box; box-sizing: border-box;
min-width: 200px; min-width: 200px;
max-width: 980px; max-width: 980px;
margin: 0 auto; margin: 0 auto;
padding: 45px; padding: 45px;
} }
@media (max-width: 767px) { @media (max-width: 767px) {
.markdown-body { .markdown-body {
padding: 15px; padding: 15px;
} }
} }
.code-example { .code-example {
margin: 0; margin: 0;
@ -3704,3 +3704,7 @@ font-family: "Open Sans";
color: #fff !important; color: #fff !important;
font-size:13px; font-size:13px;
} }
.highlight {
background: #fff !important;
}

Binary file not shown.

After

Width:  |  Height:  |  Size: 122 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB