Skip to content

Commit b553ab9

Browse files
authored
Merge pull request #97 from TeenBiscuits/dev
Add Sistemas Operativos section and resources
2 parents 72f1498 + d590b9f commit b553ab9

File tree

4 files changed

+55
-0
lines changed

4 files changed

+55
-0
lines changed

astro.config.mjs

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -338,6 +338,22 @@ export default defineConfig({
338338
},
339339
],
340340
},
341+
{
342+
label: "Sistemas Operativos",
343+
link: "/so/",
344+
icon: "laptop",
345+
items: [
346+
{
347+
label: "Prácticas y más",
348+
items: [
349+
{
350+
label: "TeenBiscuits/Practicas-SO",
351+
link: "https://github.com/TeenBiscuits/Practicas-SO",
352+
},
353+
],
354+
},
355+
],
356+
},
341357
{
342358
label: "We ♥️ Open Source",
343359
link: "/opensource/",
131 KB
Loading

src/content/docs/index.mdx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,9 @@ import GitStar from '@components/GitStar.astro';
4848
<Asignaturas title="Bases de Datos" icon="seti:db" href="/bede">
4949
Apuntes para el correcto diseño e implementación de las Bases de Datos
5050
</Asignaturas>
51+
<Asignaturas title="Sistemas Operativos" icon="laptop" href="/so">
52+
Entiende la esencia de la pieza de código más importante de tu ordenador.
53+
</Asignaturas>
5154
<Card title="Más que están por venir..." icon="seti:notebook">
5255
Esta web se encuentra bajo desarrollo activo, muchos más cosas están por venir.
5356
</Card>

src/content/docs/so/index.mdx

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
---
2+
title: Sistemas Operativos
3+
description: Entiende la esencia de la pieza de código más importante de tu ordenador.
4+
prev:
5+
link: /intro
6+
label: Índice de Asignaturas
7+
tableOfContents: false
8+
---
9+
10+
import { LinkCard } from '@astrojs/starlight/components';
11+
import { ShowcaseImage } from 'starlight-showcases';
12+
13+
> Entiende la esencia de la pieza de código más importante de tu ordenador.
14+
15+
## Prácticas y más
16+
17+
:::note
18+
En la [Wiki](https://github.com/TeenBiscuits/Practicas-SO/wiki) del repositorio TeenBiscuits/Practicas-SO tienes una guía completa para ayudarte a entender la práctica.
19+
:::
20+
21+
<ShowcaseImage
22+
entries={[
23+
{
24+
thumbnail: import('@assets/so/repos/Practicas-SO.png'),
25+
href: 'https://github.com/TeenBiscuits/Practicas-SO',
26+
title: 'TeenBiscuits/Practicas-SO',
27+
description: 'Un shell con un set de comandos para interactuar con tu sistema operativo. Práctica de Sistemas Operativos en la FIC',
28+
},
29+
{
30+
thumbnail: import('@assets/contribute-github.jpg'),
31+
href: 'https://github.com/TeenBiscuits/Pasame-Codigo/issues/new',
32+
title: '¿Tienes un repo que molaría aquí?',
33+
description: '¡Abre un issue en el repositorio y lo añadiremos en cuanto podamos!',
34+
},
35+
]}
36+
/>

0 commit comments

Comments
 (0)