Skip to content

Commit 367a888

Browse files
Initial setup for nice-looking HTML display
Signed-off-by: David A. Wheeler <[email protected]>
1 parent 7dc7ce1 commit 367a888

File tree

2 files changed

+32
-0
lines changed

2 files changed

+32
-0
lines changed

docs/_config.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Configure generation of web page(s).
2+
name: Developing Secure Software (LFD121) static material
3+
# Don't insert the name of the repo at the beginning
4+
# https://stackoverflow.com/questions/46375765/how-do-you-remove-header-on-github-pages
5+
title: null
6+
kramdown:
7+
# See: https://dieghernan.github.io/chulapa-101/cheatsheets/02-kramdown-cheat-sheet
8+
toc_levels: 2..6
9+
#
10+
# https://jekyllrb.com/docs/configuration/front-matter-defaults/
11+
# Note: We specific *specific* scopes in documents that were directly
12+
# published and referenced on GitHub. That way we don't need to add YAML
13+
# to the beginning of the markdown in those cases.
14+
# In newer markdown documents, use a yaml prefix to set "description", etc.
15+
defaults:
16+
-
17+
scope:
18+
path: "" # an empty string here means all files in the project
19+
values:
20+
author: Open Source Security Foundation (OpenSSF)
21+
-
22+
scope:
23+
path: "lfd121*"
24+
values:
25+
description: This is the Developing Secure Software (LFD121) course content in static form.

docs/_includes/custom-head.html

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<!-- favicons - these settings are from top openssf.org and
2+
and we will just reference them
3+
-->
4+
<link rel="icon" href="https://openssf.org/wp-content/uploads/sites/132/2021/09/cropped-favicon-32x32.png" sizes="32x32" />
5+
<link rel="icon" href="https://openssf.org/wp-content/uploads/sites/132/2021/09/cropped-favicon-192x192.png" sizes="192x192" />
6+
<link rel="apple-touch-icon" href="https://openssf.org/wp-content/uploads/sites/132/2021/09/cropped-favicon-180x180.png" />
7+
<meta name="msapplication-TileImage" content="https://openssf.org/wp-content/uploads/sites/132/2021/09/cropped-favicon-270x270.png" />

0 commit comments

Comments
 (0)