Skip to main content

Documentation Index

Fetch the complete documentation index at: https://mintlify.com/val20-11/Pagina-de-Seminarios-y-Eventos-UIM/llms.txt

Use this file to discover all available pages before exploring further.

The project is a purely static site: reestructuracion.html is the single entry point, backed by local CSS files in css/ and one JavaScript file at js/seminarios.js. No package manager, no compilation, and no environment variables are required to get it running.

Prerequisites

Web browser

Any modern browser (Chrome, Firefox, Safari, Edge). Required for the file:// option below.

Static file server

Python 3 (ships with most systems), VS Code with Live Server, or any HTTP server. Required only for the served options.
No Node.js, npm, or build tools are needed. The site ships ready to open.

External CDN dependencies

Two external resources are loaded from CDNs inside the <head> of reestructuracion.html:
<!-- Google Fonts – Open Sans -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap" rel="stylesheet">

<!-- Font Awesome 6.0.0-beta3 -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
Both resources require an active internet connection. In a fully offline environment, Open Sans falls back to the browser’s default sans-serif font, and Font Awesome icons are replaced by blank squares or Unicode fallbacks. All layout and functionality remain intact.

Setup

1

Clone or download the repository

git clone https://github.com/val20-11/Pagina-de-Seminarios-y-Eventos-UIM.git
cd Pagina-de-Seminarios-y-Eventos-UIM
2

Choose a serving option

Pick one of the three options below based on what you already have installed.
3

Open the site in your browser

Navigate to the URL shown for your chosen option and confirm the seminars grid loads correctly.

Serving options

The simplest approach — no server required.Double-click reestructuracion.html in your file manager, or drag it into a browser window. The browser opens it using the file:// protocol.
# macOS
open reestructuracion.html

# Linux
xdg-open reestructuracion.html

# Windows (PowerShell)
Start-Process reestructuracion.html
The file:// protocol works for everything in this project because all CSS and JS paths are relative (e.g., css/reset.css, js/seminarios.js). CDN resources still require internet access.

Project file structure

Pagina-de-Seminarios-y-Eventos-UIM/
├── reestructuracion.html   # Entry point
├── css/
│   ├── reset.css
│   ├── layout.css
│   ├── components.css
│   ├── typography.css
│   └── utilities.css
└── js/
    └── seminarios.js       # Seminar data and all UI logic
All seminar data — titles, objectives, coordinators, contact details, and area tags — is defined as a JavaScript array inside js/seminarios.js. No database or API calls are made at runtime.

Build docs developers (and LLMs) love