Skip to content

Commit

Permalink
Fix paths for css
Browse files Browse the repository at this point in the history
leifcr committed Mar 18, 2019

Verified

This commit was signed with the committer’s verified signature.
dwilkie David Wilkie
1 parent ed6b78a commit ce5a252
Showing 2 changed files with 14 additions and 4 deletions.
8 changes: 4 additions & 4 deletions chart_site/_config.yml
Original file line number Diff line number Diff line change
@@ -17,16 +17,16 @@ title: Auto Devops Rails for Gitlab
email: [email protected]
description: >- # this means to ignore newlines until "baseurl:"
Chart for deploying rails apps with Auto Devops on gitlab.
baseurl: "" # the subpath of your site, e.g. /blog
url: "" # the base hostname & protocol for your site, e.g. http://example.com
baseurl: "/auto-deploy-rails" # the subpath of your site, e.g. /blog
url: "https://leifcr.gitlab.io" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: leifcr
github_username: leifcr

# Build settings
markdown: kramdown
theme: minima
plugins:
- jekyll-feed
# plugins:
# - jekyll-feed

# Exclude from processing.
# The following items will not be processed, by default. Create a custom list
10 changes: 10 additions & 0 deletions chart_site/_includes/head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
{%- seo -%}
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
{%- if jekyll.environment == 'production' and site.google_analytics -%}
{%- include google-analytics.html -%}
{%- endif -%}
</head>

0 comments on commit ce5a252

Please sign in to comment.