Initial commit

This commit is contained in:
nazunalika 2021-12-12 23:40:53 -07:00
commit bcc646f6f1
Signed by: label
GPG Key ID: 6735C0E1BD65D048
6 changed files with 83 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
site/

26
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,26 @@
---
before_script:
- dnf install python36
- pip3 install -r requirements.txt
test:
image: rockylinux:latest
stage: test
script:
- mkdocs build --script --verbose --site-dir test
artifacts:
paths:
- test
except:
- main
pages:
stage: deploy
script:
- mkdocs build --verbose
artifacts:
paths:
- public
only:
- main
...

4
docs/.pages Normal file
View File

@ -0,0 +1,4 @@
---
nav:
- ... | index.md
...

23
docs/index.md Normal file
View File

@ -0,0 +1,23 @@
---
title: SIG/Core
---
# SIG/Core Wiki
## About
Rocky Linux Center for Technical Excellence
## Mission Statement
## Contact
| Role | Name | Email | Mattermost Name | IRC Name |
|------------------------------------: |------------------------------- |--------------------- |--- | --- |
| Identity Management & Release Engineering Co-Lead | Louis Abel | label@rockylinux.org | @nazunalika | Sokel/label/Sombra |
| Release Engineering Co-Lead | Mustafa Gezen | mustafa@rockylinux.org | @mustafa | mstg |
| Release Engineering and Development | Skip Grube | skip@rockylinux.org | @skip77 | |
| Release Engineering and Development | Sherif Nagy | sherif@rockylinux.org | @sherif | |
| Release Engineering and Development | Pablo Greco | N/A | @pgreco | pgreco |
| Infrastructure | Neil Hanlon | neil@resf.org | @neil | neil |
| Infrastructure | Taylor Goodwill | tg@resf.org | @tgo | tg |

27
mkdocs.yml Normal file
View File

@ -0,0 +1,27 @@
---
site_name: SIG/Core Wiki
site_url: https://core.sig.rockylinux.io
theme:
name: windmill
highlightjs: true
hljs_languages:
- bash
- python
- yaml
- perl
features:
- navigation.tabs
- navigation.tabs.sticky
- navigation.top
- search.suggest
markdown_extensions:
- abbr
- attr_list
- admonition
- toc:
permalink: true
- footnotes
- def_list
- meta
copyright: Copyright © 2021 Rocky Enterprise Software Foundation
...

2
requirements.txt Normal file
View File

@ -0,0 +1,2 @@
mkdocs
mkdocs-cinder