Skip to content

Commit

Permalink
início do branch
Browse files Browse the repository at this point in the history
  • Loading branch information
igordsm committed Apr 23, 2024
1 parent 145027e commit c195e38
Show file tree
Hide file tree
Showing 5 changed files with 1,717 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -34,3 +34,10 @@

# mkdocs
docs/

#vitepress
content/.vitepress/dist/
content/.vitepress/cache
content/.vitepress/cache/
node_modules/
env/
28 changes: 28 additions & 0 deletions content/.vitepress/config.mts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { defineConfig } from 'vitepress'

// https://vitepress.dev/reference/site-config
export default defineConfig({
title: "Labs de C - Insper",
description: "Material para aprendizado da linguagem C para programadores Python e Java",
themeConfig: {
// https://vitepress.dev/reference/default-theme-config
nav: [
{ text: 'Home', link: '/' },
{ text: 'Examples', link: '/markdown-examples' }
],

sidebar: [
{
text: 'Examples',
items: [
{ text: 'Markdown Examples', link: '/markdown-examples' },
{ text: 'Runtime API Examples', link: '/api-examples' }
]
}
],

socialLinks: [
{ icon: 'github', link: 'https://github.com/vuejs/vitepress' }
]
}
})
46 changes: 46 additions & 0 deletions content/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
---
# https://vitepress.dev/reference/default-theme-home-page
layout: home

hero:
name: "Labs de C - Insper"
tagline: 4o semestre BCC
actions:
- theme: brand
text: Começar
link: /markdown-examples
- theme: alt
text: Acessar PrairieLearn
link: /api-examples
# features:
# - title: Feature A
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
# - title: Feature B
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
# - title: Feature C
# details: Lorem ipsum dolor sit amet, consectetur adipiscing elit
---


## Objetivos

Capacitar os alunos na linguagem C para que eles possam usá-la nas disciplinas
do Quinto Semestre da Engenharia de Computação Insper.

Iremos utilizar [um espaço no PrairieLearn](https://us.prairielearn.com/pl/course_instance/137302/assessment/2352640) para fazer essas atividades. Já aproveitem e se matriculem usando seu email Insper (login Microsoft).


## Equipe

- **Professores:**
- Igor Montagner
- Carlos Menezes

- **Colaborações e versões anteriores**
- Rafael Corsi
- Marcelo Hasimoto
- Maciel Vidal
- Rodrigo Carareto
- Eduardo Marossi
- Marco Mello
- Flavio Batista
Loading

0 comments on commit c195e38

Please sign in to comment.