{"id":24572755,"url":"https://github.com/coderic/jekyll-theme-coderic","last_synced_at":"2026-01-03T21:42:57.375Z","repository":{"id":214116016,"uuid":"309038347","full_name":"Coderic/jekyll-theme-coderic","owner":"Coderic","description":"Coderic Theme (For Coderic Use Only) Please don't fork this theme","archived":false,"fork":false,"pushed_at":"2023-04-03T10:49:27.000Z","size":13208,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-01-23T19:44:03.496Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://coderic.org/jekyll-theme-coderic/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Coderic.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null}},"created_at":"2020-11-01T06:37:53.000Z","updated_at":"2025-01-12T04:40:49.000Z","dependencies_parsed_at":"2023-12-26T01:29:28.990Z","dependency_job_id":"21124b10-b0a5-47c2-9b49-8476b0e0f067","html_url":"https://github.com/Coderic/jekyll-theme-coderic","commit_stats":null,"previous_names":["coderic/jekyll-theme-coderic"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Coderic%2Fjekyll-theme-coderic","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Coderic%2Fjekyll-theme-coderic/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Coderic%2Fjekyll-theme-coderic/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Coderic%2Fjekyll-theme-coderic/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Coderic","download_url":"https://codeload.github.com/Coderic/jekyll-theme-coderic/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":244014168,"owners_count":20383715,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-01-23T19:44:29.367Z","updated_at":"2026-01-03T21:42:57.369Z","avatar_url":"https://github.com/Coderic.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# jekyll-theme-coderic\n\nTema Jekyll moderno y profesional para el ecosistema Coderic.\n\n## Instalación\n\n### Método 1: Remote Theme (Recomendado para GitHub Pages)\n\n1. Agrega las siguientes gemas a tu `Gemfile`:\n\n   ```ruby\nsource \"https://rubygems.org\"\n\ngem \"jekyll\", \"~\u003e 4.4\"\ngem \"jekyll-remote-theme\"\ngem \"jekyll-sitemap\"\ngem \"jekyll-seo-tag\"\ngem \"jekyll-feed\"\n   ```\n\n2. Configura `_config.yml`:\n\n```yaml\nremote_theme: Coderic/jekyll-theme-coderic\n\nplugins:\n  - jekyll-remote-theme\n  - jekyll-sitemap\n  - jekyll-seo-tag\n  - jekyll-feed\n```\n\n3. Instala las dependencias:\n\n   ```bash\nbundle install\n```\n\n### Método 2: Gem (Cuando esté publicado en RubyGems)\n\n```ruby\n# Gemfile\ngem \"jekyll-theme-coderic\"\n```\n\n   ```yaml\n# _config.yml\ntheme: jekyll-theme-coderic\n```\n\n## Uso\n\n### Layouts Disponibles\n\n- `default` - Layout base con header y footer\n- `page` - Layout para páginas de contenido (incluye navegación)\n\n### Ejemplo de Página\n\n```markdown\n---\nlayout: page\ntitle: \"Mi Página\"\n---\n\nContenido de la página aquí.\n```\n\n### Configuración\n\nConfigura el tema en tu `_config.yml`:\n\n```yaml\n# Información del sitio\ntitle: \"Mi Sitio\"\ndescription: \"Descripción del sitio\"\nnetwork: \"ORG\" # ORG, FINTECH, CLOUD, HUB\n\n# Logo\nlogo: \"/assets/img/coderic-isotipo.svg\"\n\n# Navegación\nnavigation:\n  - label: \"Home\"\n    url: \"/\"\n  - label: \"About\"\n    url: \"/about\"\n\n# URLs de autenticación (opcional)\nprofile_url: \"/profile\"\ndashboard_url: \"/dashboard\"\n\n# URLs legales\nprivacy_url: \"/privacy\"\nlegal_url: \"/legal\"\ntos_url: \"/tos\"\n\n# Analytics (opcional)\ngoogle_analytics_id: \"G-XXXXXXXXXX\"\n```\n\n## Características\n\n- ✅ Diseño moderno con Tailwind CSS v4\n- ✅ Responsive y accesible\n- ✅ Navegación con menú móvil\n- ✅ Soporte para Auth0\n- ✅ SEO optimizado\n- ✅ Componentes reutilizables\n\n## Estructura del Tema\n\n```\njekyll-theme-coderic/\n├── _layouts/\n│   ├── default.html    # Layout base\n│   └── page.html       # Layout de páginas\n├── _includes/\n│   └── portal.html     # Navegación principal\n├── _sass/\n│   └── coderic-theme/\n│       └── main.scss   # Estilos del tema\n└── assets/\n    ├── css/\n    │   └── main.scss   # Entry point de estilos\n    └── img/\n        └── coderic-isotipo.svg\n```\n\n## Desarrollo\n\n   ```bash\n# Clonar el repositorio\ngit clone https://github.com/Coderic/jekyll-theme-coderic.git\ncd jekyll-theme-coderic\n\n# Instalar dependencias\nbundle install\n\n# Construir el tema\nbundle exec jekyll build\n```\n\n## Licencia\n\nMIT License - ver [LICENSE](LICENSE) para más detalles.\n\n## Contribuir\n\nLas contribuciones son bienvenidas. Por favor:\n\n1. Fork el proyecto\n2. Crea una rama para tu feature (`git checkout -b feature/AmazingFeature`)\n3. Commit tus cambios (`git commit -m 'Add some AmazingFeature'`)\n4. Push a la rama (`git push origin feature/AmazingFeature`)\n5. Abre un Pull Request\n\n## Soporte\n\n- **Issues**: [GitHub Issues](https://github.com/Coderic/jekyll-theme-coderic/issues)\n- **Documentación**: [GitHub Wiki](https://github.com/Coderic/jekyll-theme-coderic/wiki)\n\n---\n\n**Coderic** © 2004-2024 · Desde septiembre 30, 2004\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderic%2Fjekyll-theme-coderic","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcoderic%2Fjekyll-theme-coderic","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcoderic%2Fjekyll-theme-coderic/lists"}