Skip to content

Commit

Permalink
Correct some style/validation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
benbalter committed Apr 9, 2018
1 parent 39a52d7 commit 9e1a44f
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 21 deletions.
4 changes: 2 additions & 2 deletions _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="{{ '/assets/css/style.css?v=' | append: site.github.build_revision | relative_url }}">

Expand Down Expand Up @@ -33,7 +33,7 @@ <h2>{{ site.description | default: site.github.project_tagline }}</h2>
</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)
Expand Down
6 changes: 3 additions & 3 deletions index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ layout: default

Text can be **bold**, _italic_, ~~strikethrough~~ or `keyword`.

[Link to another page](another-page).
[Link to another page](./another-page.html).

There should be whitespace between paragraphs.

Expand Down Expand Up @@ -94,11 +94,11 @@ end

### Small image

![](https://assets-cdn.github.com/images/icons/emoji/octocat.png)
![Octocat](https://assets-cdn.github.com/images/icons/emoji/octocat.png)

### Large image

![](https://guides.github.com/activities/hello-world/branching.png)
![Branching](https://guides.github.com/activities/hello-world/branching.png)


### Definition lists can be used with HTML syntax.
Expand Down
29 changes: 13 additions & 16 deletions jekyll-theme-hacker.gemspec
Original file line number Diff line number Diff line change
@@ -1,23 +1,20 @@
# encoding: utf-8

Gem::Specification.new do |s|
s.name = "jekyll-theme-hacker"
s.version = "0.1.0"
s.license = "CC0-1.0"
s.authors = ["Jason Costello", "GitHub, Inc."]
s.email = ["[email protected]"]
s.homepage = "https://github.com/pages-themes/hacker"
s.summary = "Hacker is a Jekyll theme for GitHub Pages"
s.name = 'jekyll-theme-hacker'
s.version = '0.1.0'
s.license = 'CC0-1.0'
s.authors = ['Jason Costello', 'GitHub, Inc.']
s.email = ['[email protected]']
s.homepage = 'https://github.com/pages-themes/hacker'
s.summary = 'Hacker 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

0 comments on commit 9e1a44f

Please sign in to comment.