Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
tiagopereira committed Aug 23, 2024
0 parents commit e0bb536
Show file tree
Hide file tree
Showing 7 changed files with 111 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: ci
on:
push:
branches:
- master
- main
permissions:
contents: write
pages: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Configure Git Credentials
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
- uses: actions/setup-python@v5
with:
python-version: 3.x
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
- uses: actions/cache@v4
with:
key: mkdocs-material-${{ env.cache_id }}
path: .cache
restore-keys: |
mkdocs-material-
- run: pip install mkdocs-material
- run: mkdocs gh-deploy --force
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Deep Learning at RoCS

This repository contains files relating to Deep Learning at the Rosseland Centre for Solar Physics.
3 changes: 3 additions & 0 deletions docs/home.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Deep Learning RoCS 2024

This page has general information.
3 changes: 3 additions & 0 deletions docs/info.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Pratical information

Some info here.
3 changes: 3 additions & 0 deletions docs/programme.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Programme

Programme info here.
3 changes: 3 additions & 0 deletions docs/team.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Team

Team members appear here.
66 changes: 66 additions & 0 deletions mkdocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,66 @@
site_name: DL RoCS 2024
site_url: https://ita-solar.github.io/dlrocs

# Repository
repo_name: ita-solar/dlrocs
repo_url: https://github.com/ita-solar/dlrocs

nav:
- Home: home.md
- Programme: programme.md
- Team: team.md
- Practical information: info.md

theme:
name: 'material'
font: false # avoid Google fonts for GDPR compliance
palette:
primary: amber
# Palette toggle for automatic mode
- media: "(prefers-color-scheme)"
toggle:
icon: material/brightness-auto
name: Switch to light mode

# Palette toggle for light mode
- media: "(prefers-color-scheme: light)"
scheme: default
toggle:
icon: material/brightness-7
name: Switch to dark mode

# Palette toggle for dark mode
- media: "(prefers-color-scheme: dark)"
scheme: slate
toggle:
icon: material/brightness-4
name: Switch to system preference


# Extensions
markdown_extensions:
- toc:
permalink: true
- admonition
- codehilite
- pymdownx.arithmatex
- pymdownx.betterem:
smart_enable: all
- pymdownx.caret
- pymdownx.critic
- pymdownx.details
- pymdownx.emoji:
emoji_generator: !!python/name:pymdownx.emoji.to_svg
- pymdownx.inlinehilite
- pymdownx.magiclink
- pymdownx.mark
- pymdownx.smartsymbols
- pymdownx.superfences
- pymdownx.tasklist:
custom_checkbox: true
- pymdownx.tilde

# For mathjax
extra_javascript:
- 'https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML'

0 comments on commit e0bb536

Please sign in to comment.