mirror of
https://github.com/aljazceru/midnight-gh-pages-theme.git
synced 2025-12-17 06:04:20 +01:00
Correct some style/validation errors
This commit is contained in:
@@ -2,11 +2,11 @@
|
||||
<html lang="{{ site.lang | default: "en-US" }}">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="chrome=1">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
|
||||
{% seo %}
|
||||
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">
|
||||
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
|
||||
<script src="https://code.jquery.com/jquery-1.12.4.min.js" integrity="sha256-ZosEbRLbNQzLpnKIkEdrPv7lOy9C27hHQ+Xp8a4MxAQ=" crossorigin="anonymous"></script>
|
||||
<script src="{{ '/assets/js/respond.js' | relative_url }}"></script>
|
||||
<!--[if lt IE 9]>
|
||||
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
|
||||
@@ -47,7 +47,7 @@
|
||||
</div>
|
||||
|
||||
{% if site.google_analytics %}
|
||||
<script type="text/javascript">
|
||||
<script>
|
||||
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
|
||||
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
|
||||
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
|
||||
|
||||
6
index.md
6
index.md
@@ -4,7 +4,7 @@ layout: default
|
||||
|
||||
Text can be **bold**, _italic_, or ~~strikethrough~~.
|
||||
|
||||
[Link to another page](another-page).
|
||||
[Link to another page](./another-page.html).
|
||||
|
||||
There should be whitespace between paragraphs.
|
||||
|
||||
@@ -94,11 +94,11 @@ end
|
||||
|
||||
### Small image
|
||||
|
||||

|
||||

|
||||
|
||||
### Large image
|
||||
|
||||

|
||||

|
||||
|
||||
|
||||
### Definition lists can be used with HTML syntax.
|
||||
|
||||
@@ -1,23 +1,20 @@
|
||||
# encoding: utf-8
|
||||
|
||||
Gem::Specification.new do |s|
|
||||
s.name = "jekyll-theme-midnight"
|
||||
s.version = "0.1.0"
|
||||
s.license = "CC0-1.0"
|
||||
s.authors = ["Matt Graham", "GitHub, Inc."]
|
||||
s.email = ["opensource+jekyll-theme-midnight@github.com"]
|
||||
s.homepage = "https://github.com/pages-themes/midnight"
|
||||
s.summary = "Midnight is a Jekyll theme for GitHub Pages"
|
||||
s.name = 'jekyll-theme-midnight'
|
||||
s.version = '0.1.0'
|
||||
s.license = 'CC0-1.0'
|
||||
s.authors = ['Matt Graham', 'GitHub, Inc.']
|
||||
s.email = ['opensource+jekyll-theme-midnight@github.com']
|
||||
s.homepage = 'https://github.com/pages-themes/midnight'
|
||||
s.summary = 'Midnight is a Jekyll theme for GitHub Pages'
|
||||
|
||||
s.files = `git ls-files -z`.split("\x0").select do |f|
|
||||
f.match(%r{^((_includes|_layouts|_sass|assets)/|(LICENSE|README)((\.(txt|md|markdown)|$)))}i)
|
||||
end
|
||||
|
||||
s.platform = Gem::Platform::RUBY
|
||||
s.add_runtime_dependency "jekyll", "~> 3.5"
|
||||
s.add_runtime_dependency "jekyll-seo-tag", "~> 2.0"
|
||||
s.add_development_dependency 'w3c_validators', "~> 1.3"
|
||||
s.add_development_dependency 'html-proofer', "~> 3.0"
|
||||
s.add_development_dependency 'rubocop', "~> 0.50"
|
||||
|
||||
s.platform = Gem::Platform::RUBY
|
||||
s.add_runtime_dependency 'jekyll', '~> 3.5'
|
||||
s.add_runtime_dependency 'jekyll-seo-tag', '~> 2.0'
|
||||
s.add_development_dependency 'html-proofer', '~> 3.0'
|
||||
s.add_development_dependency 'rubocop', '~> 0.50'
|
||||
s.add_development_dependency 'w3c_validators', '~> 1.3'
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user