Sitio web estático desarrollado con Jekyll para promocionar el proyecto inmobiliario “El Alto de los Cinco” en Villa General Belgrano, Córdoba.
cd src
bundle install
bundle exec jekyll serve
http://localhost:4000
bundle exec jekyll build
Los archivos generados estarán en _site/
src/
├── _config.yml # Configuración de Jekyll
├── _layouts/ # Templates de página
│ └── default.html
├── _includes/ # Componentes reutilizables
│ ├── header.html
│ └── footer.html
├── _sass/ # Estilos SCSS
│ └── main.scss
├── assets/
│ ├── css/
│ │ └── main.scss # Punto de entrada de estilos
│ ├── js/
│ │ └── main.js # JavaScript principal
│ ├── images/ # Imágenes del sitio
│ ├── videos/ # Videos (drone, etc.)
│ └── docs/ # PDFs y documentos descargables
├── index.html # Página principal
├── Gemfile # Dependencias Ruby
└── README.md
#8B7355 (Marrón tierra elegante)#5A6B5D (Verde oliva apagado)#B89968 (Dorado envejecido)#2C2A29 (Negro cálido)#F5F3F0 (Blanco cálido)Sistema basado en 8px:
Crear repositorio en GitHub
git init
git add .
git commit -m "Initial commit"
git branch -M main
git remote add origin https://github.com/TU-USUARIO/TU-REPO.git
git push -u origin main
_config.yml:
baseurl: "/nombre-del-repo" # Solo si no es username.github.io
url: "https://TU-USUARIO.github.io"
https://TU-USUARIO.github.io/nombre-del-repo
# Limpiar caché
bundle exec jekyll clean
# Build sin watch
bundle exec jekyll build
# Servidor con drafts
bundle exec jekyll serve --drafts
# Servidor con livereload
bundle exec jekyll serve --livereload
# Build para GitHub Pages específicamente
JEKYLL_ENV=production bundle exec jekyll build
Para consultas sobre el desarrollo del sitio:
Fecha de creación: 3 de Febrero, 2026
Versión: 1.0 - Setup inicial con Jekyll