File tree Expand file tree Collapse file tree 4 files changed +55
-0
lines changed Expand file tree Collapse file tree 4 files changed +55
-0
lines changed Original file line number Diff line number Diff line change @@ -338,6 +338,22 @@ export default defineConfig({
338
338
} ,
339
339
] ,
340
340
} ,
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
+ } ,
341
357
{
342
358
label : "We ♥️ Open Source" ,
343
359
link : "/opensource/" ,
Original file line number Diff line number Diff line change @@ -48,6 +48,9 @@ import GitStar from '@components/GitStar.astro';
48
48
<Asignaturas title = " Bases de Datos" icon = " seti:db" href = " /bede" >
49
49
Apuntes para el correcto diseño e implementación de las Bases de Datos
50
50
</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 >
51
54
<Card title = " Más que están por venir..." icon = " seti:notebook" >
52
55
Esta web se encuentra bajo desarrollo activo, muchos más cosas están por venir.
53
56
</Card >
Original file line number Diff line number Diff line change
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
+ />
You can’t perform that action at this time.
0 commit comments