-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
14 additions
and
4 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 |
---|---|---|
|
@@ -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 | ||
|
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,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> |