Skip to content
This repository has been archived by the owner on Jan 15, 2024. It is now read-only.

Commit

Permalink
Enforce HTTPS
Browse files Browse the repository at this point in the history
  • Loading branch information
shushugah committed Jun 29, 2019
1 parent be20caf commit 7b06937
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 10 deletions.
5 changes: 3 additions & 2 deletions Rakefile
Expand Up @@ -12,12 +12,13 @@ task :default => [:test]
#######################################
# test
#######################################
# A simple test which buils the example site.
# A simple test which buils the example site
# and checks for valid links.
desc "Run tests"
task :test do
cd "example" do
sh "bundle exec jekyll build"
options = { empty_alt_ignore: true }
options = { empty_alt_ignore: true, enforce_https: true }
HTMLProofer.check_directory("./_site", options).run
end
end
4 changes: 2 additions & 2 deletions example/_i18n/en/_posts/2013-12-09-example-post.md
Expand Up @@ -8,8 +8,8 @@ categories: en posts

## Introducing Flex, a Jekyll theme

Flex is a minimalist, responsive theme based on the website, [The Development](http://thedevelopment.co).
Flex is a minimalist, responsive theme based on the website, [The Development](https://jekyllthemes.io/theme/flex).

## Open Sourced on GitHub

Flex is open sourced on GitHub and is licensed under the [MIT License](http://opensource.org/licenses/MIT). Feel free to contribute to it anytime!
Flex is open sourced on GitHub and is licensed under the [MIT License](https://opensource.org/licenses/MIT). Feel free to contribute to it anytime!
4 changes: 2 additions & 2 deletions example/_i18n/es/_posts/2013-12-09-example-post.md
Expand Up @@ -8,8 +8,8 @@ categories: es posts

## Presentación de Flex, un tema Jekyll

Flex es un tema minimalista y rápido basado en el sitio web [The Development](http://thedevelopment.co).
Flex es un tema minimalista y rápido basado en el sitio web [The Development](https://jekyllthemes.io/theme/flex).

## Codigo abierto en GitHub

Flex es código abierto y puedes encontrarlo en GitHub. Está disponible bajo la licencia [MIT License](http://opensource.org/licenses/MIT). Puedes contribuir a Flex en cualquier momento!
Flex es código abierto y puedes encontrarlo en GitHub. Está disponible bajo la licencia [MIT License](https://opensource.org/licenses/MIT). Puedes contribuir a Flex en cualquier momento!
4 changes: 2 additions & 2 deletions example/_i18n/it/_posts/2013-12-09-example-post.md
Expand Up @@ -8,9 +8,9 @@ categories: posts

## Introduzione a Flex, un tema per Jekyll

Flex è un tema minimalista e veloce, basato sul sito web [The Development](http://thedevelopment.co).
Flex è un tema minimalista e veloce, basato sul sito web [The Development](https://jekyllthemes.io/theme/flex).

## Disponibile come Open Source su GitHub

Flex è disponibile come Open Source ed è rilasciato sotto la licenza [MIT License](http://opensource.org/licenses/MIT). Puoi contribuire al suo sviluppo!
Flex è disponibile come Open Source ed è rilasciato sotto la licenza [MIT License](https://opensource.org/licenses/MIT). Puoi contribuire al suo sviluppo!

4 changes: 2 additions & 2 deletions example/_layouts/default.html
Expand Up @@ -16,8 +16,8 @@
<link rel="stylesheet" href="/css/responsive.css">

<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Raleway:300,400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Raleway:300,400,700' rel='stylesheet' type='text/css'>
</head>
<body>
<div class="site">
Expand Down

0 comments on commit 7b06937

Please sign in to comment.