-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Generate ACVP site without raw HTML/CSS, update README
- Loading branch information
Showing
9 changed files
with
367 additions
and
714 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,5 @@ | ||
*.DS_Store | ||
*.html | ||
!index.html | ||
*.txt | ||
*.xml | ||
*.nits | ||
.DS_Store | ||
.sass-cache | ||
*.err | ||
*.log | ||
Gemfile.lock | ||
|
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,4 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "metanorma-cli" | ||
gem "metanorma-nist", source: "https://rubygems.pkg.github.com/metanorma" |
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,4 @@ | ||
source "https://rubygems.org" | ||
|
||
gem "github-pages" | ||
gem "webrick" |
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,33 @@ | ||
theme: jekyll-theme-slate | ||
title: ACVP | ||
description: Industry Working Group on Automated Cryptographic Algorithm Validation | ||
|
||
# TODO: Uncomment this block after merging into usnistgov/ACVP | ||
# url: https://pages.nist.gov | ||
# baseurl: "/ACVP" # the subpath of your site, e.g. "/blog" | ||
# repository: "usnistgov/ACVP" | ||
|
||
# This disables the "View on GitHub" button on the Slate theme | ||
github: | ||
is_project_page: false | ||
|
||
# Reading Files | ||
# include: | ||
exclude: | ||
- slides | ||
- iev | ||
- relaton | ||
- Images | ||
- src | ||
- metanorma.yml | ||
|
||
plugins: | ||
- jekyll-coffeescript | ||
- jekyll-default-layout | ||
- jekyll-gist | ||
- jekyll-github-metadata | ||
- jekyll-optional-front-matter | ||
- jekyll-paginate | ||
- jekyll-readme-index | ||
- jekyll-titles-from-headings | ||
- jekyll-relative-links |
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,32 @@ | ||
<!-- start custom head snippets, customize with your own _includes/head-custom.html file --> | ||
<script src="https://code.jquery.com/jquery-1.12.4.min.js" type="text/javascript"></script> | ||
<link rel="stylesheet" href="https://pages.nist.gov/nist-header-footer/css/nist-combined.css"> | ||
<script src="https://pages.nist.gov/nist-header-footer/js/nist-header-footer.js" type="text/javascript" defer="defer"></script> | ||
<script src="https://pages.nist.gov/leaveNotice/js/jquery.leaveNotice-nist.min.js" type="text/javascript"></script> | ||
|
||
<script async type="text/javascript" id="_fed_an_ua_tag" src="https://dap.digitalgov.gov/Universal-Federated-Analytics-Min.js?agency=NIST&subagency=github&pua=UA-66610693-1&yt=true&exts=ppsx,pps,f90,sch,rtf,wrl,txz,m1v,xlsm,msi,xsd,f,tif,eps,mpg,xml,pl,xlt,c"></script> | ||
|
||
<script type="text/javascript"> | ||
$(document).ready(function(){ | ||
// Mark external (non-nist.gov) 'a' tags with class "external" | ||
// If the address start with https and ends with nist.gov | ||
var re_nist = new RegExp('^https?:\/\/((^\/)*\.)*nist\\.gov(\/|$)'); | ||
// Regex to find address that start with https | ||
var re_absolute_address = new RegExp('^((https?:)?\/\/)'); | ||
$("a").each(function(){ | ||
var url=$(this).attr('href'); | ||
if(re_nist.test(url) || !re_absolute_address.test(url)){ | ||
$(this).addClass('local'); | ||
}else{ | ||
$(this).addClass('external'); | ||
} | ||
}); | ||
|
||
// Add leaveNotice to external 'a' elements | ||
$('a.external').leaveNotice({ | ||
siteName: 'ACVP Specification', | ||
}); | ||
}); | ||
</script> | ||
<link rel="stylesheet" type="text/css" href="https://pages.nist.gov/leaveNotice/css/jquery.leaveNotice.css" /> | ||
<!-- end custom head snippets --> |
This file was deleted.
Oops, something went wrong.