1# Gemara Documentation Site Configuration
2
3title: Gemara
4description: >-
5 GRC Engineering Model for Automated Risk Assessment - A logical model to describe
6 compliance activities, their interactions, and schemas for automated interoperability.
7
8url: "https://gemara.openssf.org"
9
10titles_from_headings:
11 enabled: true
12 strip_title: true
13
14# Author/Project info (displayed in footer)
15author:
16 name: Gemara Authors
17 email: gemara+subscribe@lists.openssf.org
18
19# Build settings
20theme: minima
21plugins:
22 - jekyll-remote-theme
23 - jekyll-feed
24 - jekyll-seo-tag
25
26# Exclude from processing
27# Note: Paths are relative to the source directory (./docs)
28exclude:
29 - Gemfile
30 - Gemfile.lock
31 - node_modules
32 - vendor/bundle/
33 - vendor/cache/
34 - vendor/gems/
35 - vendor/ruby/
36
37# Collections for better organization
38collections:
39 layers:
40 output: true
41 permalink: /:collection/:name/
42
43# Defaults
44defaults:
45 - scope:
46 path: ""
47 type: "pages"
48 values:
49 layout: "page"
50 - scope:
51 path: ""
52 type: "layers"
53 values:
54 layout: "page"
55
56# GitHub metadata
57repository: gemaraproj/gemara
58github:
59 is_project_page: true
60
61# Set to `true` to show excerpts on the homepage.
62show_excerpts: false
63
64# Social Media Links.
65# Renders icons via Font Awesome Free web fonts CDN, based on ordered list of
66# entries. Valid entry keys:
67# * title Tooltip rendered on hovering over icon.
68# * icon Font Awesome icon id. `github` corresponds to `fa-github`.
69# * url Full URL of social profile.
70social_links:
71 - icon: github
72 url: "https://github.com/ossf"
73 - icon: x-twitter
74 url: "https://x.com/openssf"
75 - icon: bluesky
76 url: "https://bsky.app/profile/openssf.org"
77 - icon: linkedin
78 url: "https://www.linkedin.com/company/openssf/"
79
80# Navigation is defined in _data/navigation.yml
81
82# Markdown settings
83markdown: kramdown
84kramdown:
85 input: GFM
86 syntax_highlighter: rouge
87 toc_levels: "2"