Skip to content

Commit b53fedd

Browse files
Update files
0 parents  commit b53fedd

56 files changed

Lines changed: 12642 additions & 0 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Listener Manager Update Readme
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: read
8+
id-token: write
9+
10+
jobs:
11+
call:
12+
uses: naavilam/github-infra-templates/.github/workflows/manager-readme-update.yml@main
13+
with:
14+
org: ${{ github.repository_owner }}
15+
secrets:
16+
PROVISIONER_APP_ID: ${{ vars.PROVISIONER_APP_ID }}
17+
PROVISIONER_PRIVATE_KEY_PEM: ${{ secrets.PROVISIONER_PRIVATE_KEY_PEM }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Listener Manager Update Website
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: read
8+
id-token: write
9+
10+
jobs:
11+
call:
12+
uses: naavilam/github-infra-templates/.github/workflows/manager-website-update.yml@main
13+
with:
14+
org: ${{ github.repository_owner }}
15+
secrets:
16+
PROVISIONER_APP_ID: ${{ vars.PROVISIONER_APP_ID }}
17+
PROVISIONER_PRIVATE_KEY_PEM: ${{ secrets.PROVISIONER_PRIVATE_KEY_PEM }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Listener Repositories Initializer
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
target:
7+
description: "Target repository or else all"
8+
required: false
9+
default: ""
10+
11+
permissions:
12+
contents: write
13+
14+
jobs:
15+
run:
16+
uses: naavilam/github-infra-templates/.github/workflows/repositories-initializer.yml@main
17+
with:
18+
repo: ${{ inputs.target }}
19+
secrets:
20+
PROVISIONER_APP_ID: ${{ vars.PROVISIONER_APP_ID }}
21+
PROVISIONER_PRIVATE_KEY_PEM: ${{ secrets.PROVISIONER_PRIVATE_KEY_PEM }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Listener Repositories Update README.md
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
target:
7+
description: "Target repository or else all"
8+
required: false
9+
default: ""
10+
11+
permissions:
12+
contents: write
13+
14+
jobs:
15+
run:
16+
uses: naavilam/github-infra-templates/.github/workflows/repositories-readme-update.yml@main
17+
with:
18+
repo: ${{ inputs.target }}
19+
secrets:
20+
PROVISIONER_APP_ID: ${{ vars.PROVISIONER_APP_ID }}
21+
PROVISIONER_PRIVATE_KEY_PEM: ${{ secrets.PROVISIONER_PRIVATE_KEY_PEM }}
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: Listener Repositories Update Websites
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
target:
7+
description: "Target repository or else all"
8+
required: false
9+
default: ""
10+
11+
permissions:
12+
contents: write
13+
14+
jobs:
15+
run:
16+
uses: naavilam/github-infra-templates/.github/workflows/repositories-website-update.yml@main
17+
with:
18+
repo: ${{ inputs.target }}
19+
secrets:
20+
PROVISIONER_APP_ID: ${{ vars.PROVISIONER_APP_ID }}
21+
PROVISIONER_PRIVATE_KEY_PEM: ${{ secrets.PROVISIONER_PRIVATE_KEY_PEM }}
Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: Listener Update Website
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: write
8+
id-token: write
9+
10+
jobs:
11+
run:
12+
uses: naavilam/github-infra-templates/.github/workflows/manager-provisioner.yml@main
13+
with:
14+
org: ${{ vars.org }}
15+
secrets:
16+
PROVISIONER_APP_ID: ${{ vars.PROVISIONER_APP_ID }}
17+
PROVISIONER_PRIVATE_KEY_PEM: ${{ secrets.PROVISIONER_PRIVATE_KEY_PEM }}

.gitignore

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
.DS_Store
2+
3+
_site
4+
.sass-cache
5+
.jekyll-cache
6+
.jekyll-metadata
7+
8+
Gemfile.lock

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
https://course-codex.github.io

_config.yml

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
title: Course Codex
2+
url: https://course-codex.github.io
3+
email: nara.moraes@usp.br
4+
description: ''
5+
skills: ''
6+
meta_author: Moraes Nara
7+
google_verify: null
8+
bing_verify: null
9+
contact: static
10+
disqus_shortname: myshortname
11+
color:
12+
primary: 80B3FF
13+
primary-rgb: 128,179,255
14+
secondary: 2c3e50
15+
secondary-dark: e3dad4
16+
footer:
17+
copyright: Nara Ávila Moraes
18+
social: null
19+
markdown: kramdown
20+
permalink: pretty
21+
defaults:
22+
- scope:
23+
path: ''
24+
type: posts
25+
values:
26+
permalink: ''
27+
org: course-codex
28+
utm_source: course-codex
29+
github_url: https://github.com/course-codex/course-codex.github.io
30+
hero_image: /img/hero-banner.jpg

_includes/about.html

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<!-- About Section -->
2+
<section class="success" id="about">
3+
<div class="container">
4+
<div class="row">
5+
<div class="col-lg-12 text-center">
6+
<h2>About</h2>
7+
<hr class="star-light">
8+
</div>
9+
</div>
10+
<div class="row">
11+
<div class="col-lg-8 col-lg-offset-2 text-center">
12+
<p>
13+
Hi, my name is Nara. I am a computer and software engineer and currently an M.Sc. candidate in physics.
14+
</p>
15+
16+
<p class="muted">
17+
This website is maintained by me as part of my academic and research activities.
18+
For my full profile, projects, and repositories, see
19+
<a href="https://naavilam.github.io">
20+
my Academic profile
21+
</a>.
22+
</p>
23+
<p class="muted">
24+
If you notice any inaccuracies and would like to contribute by suggesting improvements, please feel free to
25+
contact me.
26+
</p>
27+
</div>
28+
</div>
29+
</section>

0 commit comments

Comments
 (0)