Skip to content

Commit fc8db6f

Browse files
Eduardo FerroEduardo Ferro
authored andcommitted
Translate website to English: update index.html and README.md
1 parent f2523a3 commit fc8db6f

2 files changed

Lines changed: 24 additions & 24 deletions

File tree

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,29 @@
1-
# eferro - Índice de proyectos
1+
# eferro - Projects index
22

3-
Este repositorio contiene una página HTML estática que sirve como índice hacia varios proyectos y el sitio personal de eferro.
3+
This repository contains a static HTML page that serves as an index to various projects and eferro's personal site.
44

5-
## Enlaces
5+
## Links
66

77
- eferro Picks: https://eferro.github.io/eferro-picks-site/
88
- SimpleCalendar: https://eferro.github.io/simplecalendar/
99
- Focus: https://eferro.github.io/focus/
10-
- Web personal: https://www.eferro.net/
10+
- Personal website: https://www.eferro.net/
1111

12-
## Despliegue en GitHub Pages
12+
## GitHub Pages deployment
1313

14-
1. Crea el repositorio en GitHub (público) y súbelo con estos archivos: `index.html` y `style.css` (opcionalmente `README.md`).
15-
2. En GitHub, ve a Settings → Pages.
16-
3. En "Build and deployment", selecciona:
14+
1. Create a public repository on GitHub and push these files: `index.html` and `style.css` (optionally `README.md`).
15+
2. In GitHub, go to Settings → Pages.
16+
3. In "Build and deployment", select:
1717
- Source: "Deploy from a branch"
18-
- Branch: `main` y carpeta `/ (root)`
19-
4. Guarda los cambios. GitHub generará la página en unos minutos.
20-
5. La URL será `https://<tu-usuario>.github.io/<repo>/` si es un proyecto, o `https://<tu-usuario>.github.io/` si usas el repositorio especial `<tu-usuario>.github.io`.
18+
- Branch: `main` and folder `/ (root)`
19+
4. Save the changes. GitHub will generate the page in a few minutes.
20+
5. The URL will be `https://<your-username>.github.io/<repo>/` if it's a project, or `https://<your-username>.github.io/` if you use the special `<your-username>.github.io` repository.
2121

22-
## Desarrollo local
22+
## Local development
2323

24-
Abre `index.html` en el navegador. No requiere servidor.
24+
Open `index.html` in the browser. It doesn't require a server.
2525

26-
## Licencia
26+
## License
2727

2828
MIT
2929

index.html

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
<!DOCTYPE html>
2-
<html lang="es">
2+
<html lang="en">
33
<head>
44
<meta charset="utf-8">
55
<meta name="viewport" content="width=device-width, initial-scale=1">
6-
<title>eferro • Proyectos</title>
7-
<meta name="description" content="Índice de proyectos y aplicaciones de eferro">
6+
<title>eferro • Projects</title>
7+
<meta name="description" content="Index of eferro's projects and apps">
88
<link rel="preconnect" href="https://fonts.googleapis.com">
99
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
1010
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;800&display=swap" rel="stylesheet">
@@ -13,31 +13,31 @@
1313
<body>
1414
<main class="container">
1515
<header class="header">
16-
<h1 class="title">Proyectos de eferro</h1>
17-
<p class="subtitle">Índice rápido de mis aplicaciones y sitio web.</p>
16+
<h1 class="title">eferro Projects</h1>
17+
<p class="subtitle">Quick index of my apps and website.</p>
1818
</header>
1919

2020
<nav class="links">
2121
<a class="card" href="https://eferro.github.io/eferro-picks-site/" target="_blank" rel="noopener noreferrer">
2222
<span class="card-title">eferro Picks</span>
23-
<span class="card-desc">Links y recomendaciones seleccionadas</span>
23+
<span class="card-desc">Curated links and recommendations</span>
2424
</a>
2525
<a class="card" href="https://eferro.github.io/simplecalendar/" target="_blank" rel="noopener noreferrer">
2626
<span class="card-title">SimpleCalendar</span>
27-
<span class="card-desc">Calendario simple y minimalista</span>
27+
<span class="card-desc">Simple, minimalist calendar</span>
2828
</a>
2929
<a class="card" href="https://eferro.github.io/focus/" target="_blank" rel="noopener noreferrer">
3030
<span class="card-title">Focus</span>
31-
<span class="card-desc">Pomodoro / enfoque sin distracciones</span>
31+
<span class="card-desc">Pomodoro / distraction-free focus</span>
3232
</a>
3333
<a class="card" href="https://www.eferro.net/" target="_blank" rel="noopener noreferrer">
34-
<span class="card-title">Blog / Web personal</span>
34+
<span class="card-title">Blog / Personal website</span>
3535
<span class="card-desc">eferro.net</span>
3636
</a>
3737
</nav>
3838

3939
<footer class="footer">
40-
<p>© <span id="year"></span> eferro. Hecho con HTML y CSS.</p>
40+
<p>© <span id="year"></span> eferro. Built with HTML and CSS.</p>
4141
</footer>
4242
</main>
4343

0 commit comments

Comments
 (0)