Skip to content

Commit

Permalink
Merge pull request ChainAgnostic#231 from ChainAgnostic/fix/jekyll_debug
Browse files Browse the repository at this point in the history
Minor jekyll bugfixes
  • Loading branch information
bumblefudge authored Jun 29, 2023
2 parents 90f9c4e + 46bfa7b commit 2bef126
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -31,3 +31,5 @@ gem "wdm", "~> 0.1.1", :platforms => [:mingw, :x64_mingw, :mswin]
# Lock `http_parser.rb` gem to `v0.6.x` on JRuby builds since newer versions of the gem
# do not have a Java counterpart.
gem "http_parser.rb", "~> 0.6.0", :platforms => [:jruby]

gem "webrick", "~> 1.8"
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ Your first PR should be a first draft of the final CAIP. An editor will manually

If your CAIP requires images, the image files should be included in a subdirectory of the `assets` folder for that CAIP as follows: `assets/caip-N` (where **N** is to be replaced with the CAIP number). When linking to an image in the CAIP, use relative links such as `../assets/caip-1/image.png`.

It is recommended that you render your PR locally to check the Jekyll syntax; to do so, run `bundle exec jekyll serve`.

## CAIP Status Terms

- **Draft** - an CAIP that is undergoing rapid iteration and changes.
Expand Down
7 changes: 2 additions & 5 deletions _layouts/caip.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,8 @@
<div class="home">
<h1 class="page-heading">
CAIP-{{ page.caip | xml_escape }}: {{ page.title | xml_escape }}
<a href="{{site.github.repository_url}}/blob/master/{{page.path}}"><svg role="img" aria-label="Source"
xmlns="https://www.w3.org/2000/svg" width="14" height="16" viewBox="0 0 14 16">
<title>Source</title>
<path fill-rule="evenodd"
d="M9.5 3L8 4.5 11.5 8 8 11.5 9.5 13 14 8 9.5 3zm-5 0L0 8l4.5 5L6 11.5 2.5 8 6 4.5 4.5 3z" />
<a href="https://github.com/{{site.repository}}/blob/main/{{page.path}}"><svg aria-hidden="true" height="24" viewBox="0 0 16 16" version="1.1" width="24" data-view-component="true" class="octicon octicon-mark-github">
<path fill-rule="evenodd" d="M8 0C3.58 0 0 3.58 0 8c0 3.54 2.29 6.53 5.47 7.59.4.07.55-.17.55-.38 0-.19-.01-.82-.01-1.49-2.01.37-2.53-.49-2.69-.94-.09-.23-.48-.94-.82-1.13-.28-.15-.68-.52-.01-.53.63-.01 1.08.58 1.23.82.72 1.21 1.87.87 2.33.66.07-.52.28-.87.51-1.07-1.78-.2-3.64-.89-3.64-3.95 0-.87.31-1.59.82-2.15-.08-.2-.36-1.02.08-2.12 0 0 .67-.21 2.2.82.64-.18 1.32-.27 2-.27.68 0 1.36.09 2 .27 1.53-1.04 2.2-.82 2.2-.82.44 1.1.16 1.92.08 2.12.51.56.82 1.27.82 2.15 0 3.07-1.87 3.75-3.65 3.95.29.25.54.73.54 1.48 0 1.07-.01 1.93-.01 2.2 0 .21.15.46.55.38A8.013 8.013 0 0016 8c0-4.42-3.58-8-8-8z"></path>
</svg></a>
</h1>
<h3>{{ page.description | xml_escape }}</h3>
Expand Down

0 comments on commit 2bef126

Please sign in to comment.