-
Notifications
You must be signed in to change notification settings - Fork 49
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added new version from external libraires with SRI Support #11
Open
ghost
wants to merge
23
commits into
tanksuzuki:master
Choose a base branch
from
unknown repository
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
6360d22
Update CDN with SRI Support
MalteKiefer 18a1ac3
Update highlight.min.js with SRI Support
MalteKiefer 3a52aff
Update Version
MalteKiefer 7f91b86
remove https://
MalteKiefer 186ece8
remove https
MalteKiefer 4626703
Update header.html
MalteKiefer a1e2189
Update README.md
MalteKiefer 06d0eea
Update README.md
MalteKiefer fa7b122
Update theme.toml
MalteKiefer eaa93c7
Update config.toml
MalteKiefer a5fb532
Create list.html
MalteKiefer 26825cf
Update single.html
MalteKiefer f896daf
Create tags.html
MalteKiefer b89b597
Update index.html
MalteKiefer f474e7f
Add padding to nav.level in style.sass to align icons with title on m…
ec2d436
Merge pull request #1 from mrtobe/align-icons
MalteKiefer b315a95
Make baseurl interpretation consistent
cmcaine 717f232
Merge pull request #2 from cmcaine/non-breaking-baseurl-interpretation
MalteKiefer 7e8fdf9
Update highlight.js to 9.12.0
MalteKiefer 0aca332
Update highlight.js to 9.12.0
MalteKiefer 8401dbb
Fix
MalteKiefer a7f182a
Add body tag
jasich 8c1cd43
Merge pull request #3 from jasich/feature/support-live-reload
MalteKiefer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
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
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 |
---|---|---|
@@ -1 +1,30 @@ | ||
<!-- This theme is not supported list page --> | ||
<body> | ||
{{ partial "header" . }} | ||
{{ partial "nav" . }} | ||
<section class="section"> | ||
<div class="container"> | ||
{{ range sort .Paginator.Pages }} | ||
<article> | ||
<h2 class="subtitle is-6">{{ .Date.Format "January 2, 2006" }}</h2> | ||
<h1 class="title"><a href="{{ .Permalink }}">{{ .Title }}</a>{{ if .Draft }} ::Draft{{ end }}</h1> | ||
{{ if .Params.tags }} | ||
{{ partial "tags" .Params.tags }} | ||
{{ end }} | ||
<div class="content"> | ||
{{ .Summary | plainify | safeHTML }} | ||
{{ if .Truncated }} | ||
...<a class="button is-link" href="{{ .Permalink }}" style="height:28px"> | ||
Read more | ||
<span class="icon is-small"> | ||
<i class="fa fa-angle-double-right"></i> | ||
</span> | ||
</a> | ||
{{ end }} | ||
</div> | ||
</article> | ||
{{ end }} | ||
</div> | ||
</section> | ||
{{ partial "pager" . }} | ||
{{ partial "footer" . }} | ||
</body> |
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 |
---|---|---|
@@ -1,13 +1,18 @@ | ||
{{ partial "header" . }} | ||
{{ partial "nav" . }} | ||
<section class="section"> | ||
<div class="container"> | ||
<h2 class="subtitle is-6">{{ .Date.Format "January 2, 2006" }}</h2> | ||
<h1 class="title">{{ .Title }}</h1> | ||
<div class="content"> | ||
{{ .Content }} | ||
<body> | ||
{{ partial "header" . }} | ||
{{ partial "nav" . }} | ||
<section class="section"> | ||
<div class="container"> | ||
<h2 class="subtitle is-6">{{ .Date.Format "January 2, 2006" }}</h2> | ||
<h1 class="title">{{ .Title }}</h1> | ||
{{ if .Params.tags }} | ||
{{ partial "tags" .Params.tags }} | ||
{{ end }} | ||
<div class="content"> | ||
{{ .Content }} | ||
</div> | ||
</div> | ||
</div> | ||
</section> | ||
{{ partial "disqus" . }} | ||
{{ partial "footer" . }} | ||
</section> | ||
{{ partial "disqus" . }} | ||
{{ partial "footer" . }} | ||
</body> |
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 |
---|---|---|
@@ -1,25 +1 @@ | ||
{{ partial "header" . }} | ||
{{ partial "nav" . }} | ||
<section class="section"> | ||
<div class="container"> | ||
{{ range sort .Paginator.Pages }} | ||
<article> | ||
<h2 class="subtitle is-6">{{ .Date.Format "January 2, 2006" }}</h2> | ||
<h1 class="title"><a href="{{ .Permalink }}">{{ .Title }}</a>{{ if .Draft }} ::Draft{{ end }}</h1> | ||
<div class="content"> | ||
{{ .Summary | plainify | safeHTML }} | ||
{{ if .Truncated }} | ||
...<a class="button is-link" href="{{ .Permalink }}" style="height:28px"> | ||
Read more | ||
<span class="icon is-small"> | ||
<i class="fa fa-angle-double-right"></i> | ||
</span> | ||
</a> | ||
{{ end }} | ||
</div> | ||
</article> | ||
{{ end }} | ||
</div> | ||
</section> | ||
{{ partial "pager" . }} | ||
{{ partial "footer" . }} | ||
{{ template "theme/_default/list.html" . }} |
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
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
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
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,5 @@ | ||
<div class="tags"> | ||
{{ range . }} | ||
<a class="button is-link" href="{{ "/tags/" | relURL }}{{ . | urlize }}">{{ . }}</a> | ||
{{ end }} | ||
</div> |
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
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
# theme.toml template for a Hugo theme | ||
# See https://github.com/spf13/hugoThemes#themetoml for an example | ||
|
||
name = "Hemingway" | ||
name = "Hemingway2" | ||
license = "MIT" | ||
licenselink = "https://github.com/tanksuzuki/hemingway/blob/master/LICENSE.md" | ||
licenselink = "https://github.com/beli3ver/hemingway2/blob/master/LICENSE.md" | ||
description = "Really minimal blog theme for hugo" | ||
homepage = "https://github.com/tanksuzuki/hemingway" | ||
homepage = "https://github.com/beli3ver/hemingway2" | ||
tags = ["blog", "font awesome", "highlight.js"] | ||
features = ["html5", "css3"] | ||
features = ["html5", "css3", "tags"] | ||
min_version = 0.16 | ||
|
||
[author] | ||
name = "tanksuzuki" | ||
homepage = "http://tanksuzuki.com" | ||
name = "Malte Kiefer" | ||
homepage = "https://github.com/beli3ver" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not very familiar with the evolution of this theme, but how does removing references to the original author make sense for a PR (with a completely unrelated title as well)?