This commit is contained in:
Ben Harris 2017-05-24 02:24:15 -04:00
parent 6606c7dc80
commit a12d9b14ef
5 changed files with 16 additions and 12 deletions

3
.gitignore vendored
View File

@ -1,2 +1,5 @@
_site/ _site/
.sass-cache/ .sass-cache/
public_html/
logs/

View File

@ -1,12 +1,13 @@
# Site settings # Site settings
title: title: 'bots by ben'
email: email: 'mail@benharr.is'
description: > # this means to ignore newlines until "baseurl:" description: > # this means to ignore newlines until "baseurl:"
baseurl: "" # the subpath of your site, e.g. /blog/ baseurl: "" # the subpath of your site, e.g. /blog/
url: "" # the base hostname & protocol for your site url: "https://bots.benharr.is" # the base hostname & protocol for your site
destination: public_html
twitter_username: twitter_username: bharrismac
github_username: github_username: benharri
# Build settings # Build settings
markdown: kramdown markdown: kramdown

View File

@ -19,8 +19,8 @@
</a> </a>
</div> </div>
<div class="col-lg-2 col-lg-offset-1 text-center"> <div class="col-lg-2 col-lg-offset-1 text-center">
<a href="https://github.com/{{ site.github_username }}"> <a href="https://gitlab.com/{{ site.github_username }}">
<i class="fa fa-github fa-3x wow bounceIn" data-wow-delay=".1s"></i> <i class="fa fa-gitlab fa-3x wow bounceIn" data-wow-delay=".1s"></i>
<p>{{ site.github_username }}</p> <p>{{ site.github_username }}</p>
</a> </a>
</div> </div>

View File

@ -1,9 +1,9 @@
<header> <header>
<div class="header-content"> <div class="header-content">
<div class="header-content-inner"> <div class="header-content-inner">
<h1>Your Favorite Source of Free Bootstrap Themes</h1> <h1>Bots by <a href="//benharr.is">Ben</a></h1>
<hr> <hr>
<p>Start Bootstrap can help you build better websites using the Bootstrap CSS framework! Just download your template and start going, no strings attached!</p> <p>Check out some of the Discord bots I've made</p>
<a href="#about" class="btn btn-primary btn-xl page-scroll">Find Out More</a> <a href="#about" class="btn btn-primary btn-xl page-scroll">Find Out More</a>
</div> </div>
</div> </div>

View File

@ -6,12 +6,12 @@
<body id="page-top"> <body id="page-top">
{% include nav.html %} {% include nav.html %}
{% include header.html %} {% include header.html %}
{% include call-to-action.html %}
{% include services.html %} {% include services.html %}
{% include portfolio.html %} {% include portfolio.html %}
{% include aside.html %} {% include call-to-action.html %}
{% include contact.html %} {% include contact.html %}
{% include scripts.html %} {% include scripts.html %}
</body> </body>
</html> </html>