Port a Gitea
This commit is contained in:
parent
d75599d8d8
commit
d0a58daf5f
@ -11,7 +11,7 @@ The philosophy with this website for now is to KISS(keep it stupid simple) using
|
||||
- [x] Add our logo on the website, favicon.
|
||||
- [ ] Add content describing our association and other pages as needed.
|
||||
- [x] Work on SEO (OpenGraph, Twitter meta tags...)
|
||||
- [ ] Multilingual support(English + Spanish)
|
||||
- [x] Multilingual support(English + Spanish)
|
||||
- [x] Support for RSS (index.xml)
|
||||
- [x] Use a minimal CMS
|
||||
- [x] Basic robots.txt
|
||||
|
@ -1,7 +1,8 @@
|
||||
+++
|
||||
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
description = ''
|
||||
image = ''
|
||||
date = {{ .Date }}
|
||||
draft = true
|
||||
title: '{{ replace .File.ContentBaseName "-" " " | title }}'
|
||||
description: ''
|
||||
image: ''
|
||||
date: {{ .Date }}
|
||||
draft: true
|
||||
finished: false
|
||||
+++
|
||||
|
@ -1,12 +1,12 @@
|
||||
/* Override colors from CSS library */
|
||||
:root {
|
||||
--accent: green;
|
||||
--accent-hover: darkgreen;
|
||||
--accent: green;
|
||||
--accent-hover: darkgreen;
|
||||
}
|
||||
|
||||
/* Custom style for the logo */
|
||||
img.icon {
|
||||
max-width: 128px;
|
||||
max-height: 128px;
|
||||
margin-top: 10px;
|
||||
max-width: 128px;
|
||||
max-height: 128px;
|
||||
margin-top: 10px;
|
||||
}
|
||||
|
@ -2,3 +2,5 @@
|
||||
title: "Posts"
|
||||
description: "Nuestro blog"
|
||||
---
|
||||
|
||||
## Posts
|
||||
|
@ -8,5 +8,3 @@ We try to carry out various activities, projects and events to promote the use o
|
||||
free software at the University of Malaga.
|
||||
|
||||
This page lists all of our projects, both current and past ones.
|
||||
|
||||
### Events
|
||||
|
@ -4,4 +4,5 @@ description: An introduction to the world of free software with a Linux install
|
||||
image: assets/linux-party.png
|
||||
date: 2024-02-21T00:30:35+01:00
|
||||
place: Room 4.1.1 (Coworking room)
|
||||
finished: true
|
||||
---
|
||||
|
@ -2,3 +2,5 @@
|
||||
title: Publicaciones
|
||||
description: Nuestro blog
|
||||
---
|
||||
|
||||
## Publicaciones
|
||||
|
@ -8,5 +8,3 @@ En Open Bokeron, intentamos llevar a cabo varias actividades, proyectos y evento
|
||||
software libre en la Universidad de Málaga.
|
||||
|
||||
Esta página enumera todos nuestros proyectos, tanto actuales como antiguos.
|
||||
|
||||
### Próximos eventos
|
||||
|
@ -4,4 +4,18 @@ description: Una introducción al mundo de software libre con la instalación de
|
||||
image: assets/linux-party.png
|
||||
date: 2024-02-21T00:30:35+01:00
|
||||
place: Aula 4.1.1 (Sala Coworking)
|
||||
finished: true
|
||||
---
|
||||
|
||||
### Presentación Introductoria a Linux
|
||||
* Conoce las bases del sistema operativo Linux y sus diferencias con otros sistemas.
|
||||
* Descubre las ventajas de utilizar Linux en tu día a día.
|
||||
|
||||
### Instalación de Distribuciones GNU/Linux
|
||||
* Los miembros de Open Bokeron estarán disponibles para ayudarte a elegir la distribución de GNU/Linux más adecuada para tus necesidades
|
||||
* Asistencia personalizada en la instalación del sistema operativo en tu equipo.
|
||||
|
||||
### Exploración de Herramientas y Aplicaciones
|
||||
* Descubre una amplia gama de software libre disponible en Linux.
|
||||
* Aprende a utilizar herramientas para la programación, ofimática y más.
|
||||
* Introducción al uso del terminal de linux.
|
||||
|
@ -1,4 +1,4 @@
|
||||
baseURL = 'https://openbokeron.bitbucket.io/'
|
||||
baseURL = 'https://openbokeron.uma.es'
|
||||
title = 'OpenBokeron'
|
||||
|
||||
timeZone = 'Europe/Madrid'
|
||||
|
@ -2,15 +2,11 @@
|
||||
{{ .Content }}
|
||||
<div class="row center-xs middle-xs">
|
||||
{{ range .Pages }}
|
||||
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
|
||||
<img src="/{{ .Params.image }}" alt="Linux Party Image">
|
||||
</div>
|
||||
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
|
||||
<p><strong>{{ .Title }}</strong></p>
|
||||
<p>{{ .Description }}</p>
|
||||
<p>Fecha: {{ partial "time.html" . }}</p>
|
||||
<p>Lugar: {{ .Params.place }}</p>
|
||||
<a class="button" href="{{ .Permalink }}">Más info</a>
|
||||
<p>📅: {{ partial "time.html" . }}</p>
|
||||
<a class="button" href="{{ .Permalink }}">Info</a>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
|
@ -1,7 +1,7 @@
|
||||
<p>© 2024 Open Bokeron.</p>
|
||||
<p>
|
||||
Made with <span style="color: #e25555;">♥</span> in
|
||||
<a href="https://bitbucket.org/openbokeron/openbokeron.bitbucket.io">Bitbucket</a>
|
||||
<a href="https://openbokeron.uma.es/gitea/OpenBokeron/Web">Gitea</a>
|
||||
</p>
|
||||
|
||||
<p>
|
||||
|
@ -1,4 +1,4 @@
|
||||
<img class="icon" src="/assets/logo.jpg" alt="{{ .Title }} logo">
|
||||
<h1>{{ .Title }}</h1>
|
||||
<img class="icon" src="/assets/logo.jpg" alt="{{ .Site.Title }} logo">
|
||||
<h1>{{ .Site.Title }}</h1>
|
||||
<p>{{ T "motto" }}</p>
|
||||
{{ partial "nav.html" . }}
|
||||
|
@ -1,13 +0,0 @@
|
||||
{{ define "main" }}
|
||||
{{ .Content }}
|
||||
<div class="row center-xs middle-xs">
|
||||
{{- range where site.RegularPages "Type" "posts" }}
|
||||
<div class="col-xs-12 col-sm-12 col-md-4 col-lg-4">
|
||||
<p><strong>{{ .Title }}</strong></p>
|
||||
<p>{{ .Description }}</p>
|
||||
<p>Fecha: {{ partial "time.html" . }}</p>
|
||||
<a class="button" href="{{ .Permalink }}">Ver más</a>
|
||||
</div>
|
||||
{{- end }}
|
||||
</div>
|
||||
{{ end }}
|
@ -1,5 +0,0 @@
|
||||
{{ define "main" }}
|
||||
<p>📅 TODO, DATE</p>
|
||||
|
||||
{{ .Content }}
|
||||
{{ end }}
|
21
layouts/projects/list.html
Normal file
21
layouts/projects/list.html
Normal file
@ -0,0 +1,21 @@
|
||||
{{ define "main" }}
|
||||
{{ .Content }}
|
||||
<div class="row center-xs middle-xs">
|
||||
{{ range .Pages.ByDate.Reverse }}
|
||||
<div class="col-xs-12 col-sm-12 col-md-8 col-lg-8">
|
||||
<div class="row center-xs middle-xs">
|
||||
<div class="col-xs">
|
||||
<img src="/{{ .Params.image }}" alt="Event image">
|
||||
</div>
|
||||
<div class="col-xs">
|
||||
<p><strong>{{ .Title }}</strong></p>
|
||||
<p>{{ .Description }}</p>
|
||||
<p>📅: {{ partial "time.html" . }}</p>
|
||||
<p>📍: {{ .Params.place }}</p>
|
||||
<a class="button" href="{{ .Permalink }}">Info</a>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{{ end }}
|
||||
</div>
|
||||
{{ end }}
|
11
layouts/projects/single.html
Normal file
11
layouts/projects/single.html
Normal file
@ -0,0 +1,11 @@
|
||||
{{ define "main" }}
|
||||
<p class="notice">
|
||||
{{ .Description }}
|
||||
<br />
|
||||
<br />
|
||||
📅: {{ partial "time.html" . }}
|
||||
<br />
|
||||
📍: {{ .Params.place }}
|
||||
</p>
|
||||
{{ .Content }}
|
||||
{{ end }}
|
Loading…
Reference in New Issue
Block a user