gitextract_dyxa56vm/ ├── .dockerignore ├── .github/ │ └── workflows/ │ └── hugo.yml ├── .gitmodules ├── Dockerfile ├── LICENSE ├── ProjetoIndividualCarla2023-1.md ├── Projetos_2021_1.md ├── Projetos_2021_2.md ├── Projetos_2022_1_Turma_T02.md ├── Projetos_2022_2_Turma_T01.md ├── Projetos_2023_1.md ├── Projetos_2023_2.md ├── Projetos_2024_1.md ├── Projetos_2024_2.md ├── Projetos_2025_1_Turma_Renato.md ├── Projetos_2025_2.md ├── Projetos_2026_1.md ├── README-HUGO.md ├── README.md ├── Resultados dos grupos 2021_2.md ├── archetypes/ │ └── default.md ├── cheklists.md ├── content/ │ ├── _index.md │ ├── cronograma/ │ │ └── _index.md │ ├── projetos/ │ │ └── _index.md │ └── slides/ │ └── _index.md ├── diario-bordo.md ├── docker-compose.yml ├── hugo.toml ├── plano-ensino-carla.md ├── public/ │ ├── 404.html │ ├── assets/ │ │ └── css/ │ │ └── stylesheet.8fe10233a706bc87f2e08b3cf97b8bd4c0a80f10675a143675d59212121037c0.css │ ├── categories/ │ │ ├── index.html │ │ └── index.xml │ ├── cronograma/ │ │ ├── index.html │ │ ├── index.xml │ │ └── page/ │ │ └── 1/ │ │ └── index.html │ ├── index.html │ ├── index.xml │ ├── page/ │ │ └── 1/ │ │ └── index.html │ ├── projetos/ │ │ ├── index.html │ │ ├── index.xml │ │ └── page/ │ │ └── 1/ │ │ └── index.html │ ├── sitemap.xml │ ├── slides/ │ │ ├── index.html │ │ ├── index.xml │ │ └── page/ │ │ └── 1/ │ │ └── index.html │ └── tags/ │ ├── index.html │ └── index.xml ├── slides/ │ └── Readme.md └── template-relatorio.md