Skip to content

Commit 7b630b4

Browse files
authored
Merge pull request #23 from cryptimeleon/develop
v2.0.0 docu
2 parents 3f288f4 + e835e5c commit 7b630b4

35 files changed

Lines changed: 494 additions & 325 deletions

.github/workflows/github-pages.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and deploy Jekyll site to Github Pages
33
on:
44
push:
55
branches:
6-
- master
6+
- main
77

88
jobs:
99
github-pages:

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ GEM
7575
rb-fsevent (0.10.4)
7676
rb-inotify (0.10.1)
7777
ffi (~> 1.0)
78-
rexml (3.2.4)
78+
rexml (3.2.5)
7979
rouge (3.26.0)
8080
ruby2_keywords (0.0.4)
8181
safe_yaml (1.0.5)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ You can view the rendered page [here](https://cryptimeleon.github.io).
44

55
## How to Build This Site Locally
66

7-
To render the documentation locally, follow the instructions in our [DEVELOPER.md](https://github.com/cryptimeleon/cryptimeleon.github.io/blob/gh-pages/DEVELOPER.md) file.
7+
To render the documentation locally, follow the instructions in our [DEVELOPER.md](https://github.com/cryptimeleon/cryptimeleon.github.io/blob/develop/DEVELOPER.md) file.

_config.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,9 @@ relative_links:
66
collections: true
77
theme: minimal-mistakes-jekyll
88
minimal_mistakes_skin: "air"
9-
title: Cryptimeleon Documentation
10-
subtitle: "Version 1.0.0"
9+
title: Cryptimeleon
10+
subtitle: Prototyping of Cryptographic Construction
11+
logo: /assets/logo.png
1112
repository: cryptimeleon/cryptimeleon.github.io
1213
locale: en
1314
description: Documentation page for the Cryptimeleon cryptography libraries.
@@ -25,6 +26,9 @@ kramdown:
2526
auto_ids: true
2627
hard_wrap: false
2728

29+
cracoversion: 2.0.0
30+
mathversion: 2.0.0
31+
2832
# exclude from jekyll site
2933
exclude:
3034
- vendor
@@ -33,4 +37,4 @@ exclude:
3337
- Gemfile.lock
3438
- README.md
3539
- Dockerfile
36-
- LICENSE
40+
- LICENSE

_data/navigation.yaml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
docs:
22
- title: Getting Started
33
children:
4-
- title: "Libraries Overview"
5-
url: /getting-started/libraries.html
6-
- title: "Installation"
7-
url: /getting-started/installation.html
4+
- title: "First Steps"
5+
url: /getting-started/first-steps.html
86
- title: "5-minute Tutorial"
97
url: /getting-started/5-minute-tutorial.html
108
- title: "Pairing Tutorial"
@@ -15,6 +13,8 @@ docs:
1513
url: /getting-started/implement-elgamal.html
1614
- title: Documentation
1715
children:
16+
- title: "How do I ...?"
17+
url: /docs/how-do-I.html
1818
- title: "Lazy Evaluation"
1919
url: /docs/lazy-eval.html
2020
- title: "Bilinear Groups"
@@ -23,6 +23,8 @@ docs:
2323
url: /docs/representations.html
2424
- title: "Benchmarking"
2525
url: /docs/benchmarking.html
26+
- title: "Group Signatures"
27+
url: /docs/groupsig.html
2628
- title : "Javadocs"
2729
url: /docs/javadoc.html
2830
- title: "Frequently Asked Questions"
@@ -35,5 +37,3 @@ docs:
3537
url: /contributors/composite-builds.html
3638
- title: "Contributing"
3739
url: /contributors/contributing.html
38-
- title: "Dependencies"
39-
url: /contributors/dependencies.html

_includes/head/custom.html

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,12 @@
22
<script type="text/javascript" async
33
src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.7/MathJax.js?config=TeX-MML-AM_CHTML">
44
</script>
5-
{% endif %}
5+
{% endif %}
6+
7+
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
8+
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
9+
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
10+
<link rel="manifest" href="/site.webmanifest">
11+
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#5bbad5">
12+
<meta name="msapplication-TileColor" content="#da532c">
13+
<meta name="theme-color" content="#eeeeee">

android-chrome-192x192.png

20.9 KB
Loading

android-chrome-512x512.png

101 KB
Loading

apple-touch-icon.png

18.9 KB
Loading
155 KB
Loading

0 commit comments

Comments
 (0)