{"id":34656813,"url":"https://github.com/nilp0inter/rusoblanco-hugo-theme","last_synced_at":"2026-05-26T06:07:18.017Z","repository":{"id":329660505,"uuid":"1120332151","full_name":"nilp0inter/rusoblanco-hugo-theme","owner":"nilp0inter","description":"rusoblanco personal Hugo theme - A customized version of the classic NanoBlogger theme based on www.rusoblanco.com from the 2000s","archived":false,"fork":false,"pushed_at":"2025-12-21T02:36:01.000Z","size":40,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-22T22:49:02.978Z","etag":null,"topics":["blog","hugo","hugo-theme","minimal","nanoblogger","personal","rusoblanco","static-site"],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/nilp0inter.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-21T01:19:51.000Z","updated_at":"2025-12-21T02:36:05.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/nilp0inter/rusoblanco-hugo-theme","commit_stats":null,"previous_names":["nilp0inter/rusoblanco-hugo-theme"],"tags_count":null,"template":false,"template_full_name":null,"purl":"pkg:github/nilp0inter/rusoblanco-hugo-theme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilp0inter%2Frusoblanco-hugo-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilp0inter%2Frusoblanco-hugo-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilp0inter%2Frusoblanco-hugo-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilp0inter%2Frusoblanco-hugo-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/nilp0inter","download_url":"https://codeload.github.com/nilp0inter/rusoblanco-hugo-theme/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/nilp0inter%2Frusoblanco-hugo-theme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28006150,"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","status":"online","status_checked_at":"2025-12-24T02:00:07.193Z","response_time":83,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["blog","hugo","hugo-theme","minimal","nanoblogger","personal","rusoblanco","static-site"],"created_at":"2025-12-24T18:20:04.522Z","updated_at":"2025-12-24T18:20:06.377Z","avatar_url":"https://github.com/nilp0inter.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# rusoblanco Hugo Theme\n\nA Hugo theme based on the personal www.rusoblanco.com blog from the 2000s, which itself was a customized version of the classic NanoBlogger theme.\n\n## About\n\nThis theme recreates the distinctive look of www.rusoblanco.com:\n- **Dark banner** with white text (#111111 background)\n- **Gray background** (#F3F3F3) for the entire page\n- **Bold black links** with gray hover states\n- **Uppercase post titles** (text-transform: uppercase)\n- **Red calendar day headers** (#FF0000)\n- **Dotted borders** (#999) throughout\n- **Centered menus** and sidebar elements\n- **Lowercase sidebar titles** (text-transform: lowercase)\n\n## Original Blog\n\nThe original www.rusoblanco.com was a personal blog from the 2000s built with NanoBlogger. This Hugo theme faithfully recreates its customized aesthetic while adding modern features like syntax highlighting and math rendering.\n\n## Installation\n\n### As a Hugo Module\n\n1. Initialize your Hugo site as a module:\n\n```bash\nhugo mod init github.com/nilp0inter/yoursite\n```\n\n2. Add the theme to your `config.toml`:\n\n```toml\n[module]\n  [[module.imports]]\n    path = \"github.com/nilp0inter/rusoblanco-hugo-theme\"\n```\n\n### As a Git Submodule\n\n```bash\ncd your-hugo-site\ngit submodule add https://github.com/nilp0inter/rusoblanco-hugo-theme.git themes/rusoblanco-hugo-theme\n```\n\nThen add to your `config.toml`:\n\n```toml\ntheme = \"rusoblanco-hugo-theme\"\n```\n\n## Configuration\n\nExample `config.toml`:\n\n```toml\nbaseURL = \"https://www.rusoblanco.com/\"\nlanguageCode = \"en-us\"\ntitle = \"rusoblanco\"\ntheme = \"rusoblanco-hugo-theme\"\n\n[params]\n  description = \"A classic blog with the rusoblanco aesthetic\"\n  author = \"Your Name\"\n  banner_image = \"images/rusoblanco2.gif\"  # Optional: Use image logo instead of text\n  intro = \"\"\"\n**Welcome to rusoblanco!**\n\nThis is my blog.\n\"\"\"\n  footer_text = \"powered by [Hugo](https://gohugo.io) and [NanoBlogger](https://nanoblogger.sourceforge.net/) theme\"\n  contact = \"you@example.com\"\n  mainSections = [\"post\"]\n\n# Sidebar links (optional)\n[[params.sidebar_links]]\n  name = \"Main\"\n  url = \"/\"\n\n[[params.sidebar_links]]\n  name = \"Archives\"\n  url = \"/archives/\"\n\n# Enable year-based archives taxonomy\n[taxonomies]\n  category = \"categories\"\n  tag = \"tags\"\n  year = \"years\"\n\n# Enable syntax highlighting with line numbers\n[markup]\n  [markup.highlight]\n    style = \"monokailight\"\n    lineNos = true\n    lineNumbersInTable = true\n    noClasses = true\n\n# Enable RSS\n[outputs]\n  home = [\"HTML\", \"RSS\"]\n  section = [\"HTML\", \"RSS\"]\n\n# RSS Configuration\n[outputFormats.RSS]\n  mediatype = \"application/rss+xml\"\n  baseName = \"rss\"\n\n# Configure permalinks\n[permalinks]\n  post = \"/archives/:year/:month/:day/:slug/\"\n```\n\n### Banner Image\n\nThe theme includes the original rusoblanco banner image (`rusoblanco2.gif`). To use it:\n\n```toml\n[params]\n  banner_image = \"images/rusoblanco2.gif\"\n```\n\nIf you want to use your own banner image:\n1. Place your image in `static/images/`\n2. Set `banner_image = \"images/your-banner.gif\"`\n\nIf `banner_image` is not set, the theme will display the site title as text with the description below it.\n\n## Creating Content\n\n### Your First Post\n\n```bash\nhugo new post/my-first-post.md\n```\n\nThe archetype automatically adds the year taxonomy:\n\n```yaml\n---\ntitle: \"My First Post\"\ndate: 2025-12-21T10:00:00Z\ncategories: [\"general\"]\nyears: [\"2025\"]\ndraft: false\n---\n\nYour content here...\n```\n\n### Archives Page\n\nCreate `content/archives/_index.md`:\n\n```yaml\n---\ntitle: \"Archives\"\ntype: \"archives\"\nlayout: \"archives\"\n---\n```\n\n## Features\n\n- ✅ **Calendar Widget** - Shows current month with post links\n- ✅ **Year Archives** - Browse posts by year (e.g., /years/2024/)\n- ✅ **Category Archives** - Organize by topics\n- ✅ **Syntax Highlighting** - With line numbers and copy buttons\n- ✅ **Math Rendering** - KaTeX support for mathematical notation\n- ✅ **RSS Feeds** - Multiple feed formats\n- ✅ **Clean URLs** - /archives/YYYY/MM/DD/slug/ format\n- ✅ **Responsive** - Two-column layout\n- ✅ **Minimal JavaScript** - Only for copy buttons and math\n\n## Visual Differences from Base NanoBlogger Theme\n\nThe rusoblanco theme differs from the base NanoBlogger theme in these ways:\n\n| Feature | Base NanoBlogger | rusoblanco |\n|---------|------------------|------------|\n| Background | White (#FFF) | Gray (#F3F3F3) |\n| Banner | Light/default | Black (#111111) |\n| Links | Blue, normal weight | Black, bold |\n| Post Titles | Normal case | UPPERCASE |\n| Calendar Days | Black | Red (#FF0000) |\n| Borders | Solid lines | Dotted lines |\n| Sidebar Titles | Normal case | lowercase |\n| Menu Alignment | Left | Centered |\n\n## Credits and Attribution\n\nThis theme is based on:\n\n1. **www.rusoblanco.com** - The original personal blog from the 2000s\n2. **NanoBlogger** by n1xt3r - The static site generator: [https://nanoblogger.sourceforge.net/](https://nanoblogger.sourceforge.net/)\n3. **Hugo** - The modern static site generator: [https://gohugo.io](https://gohugo.io)\n\n## License\n\nMIT License - feel free to use and modify as needed.\n\nThe theme is inspired by the original NanoBlogger which was released under the GNU General Public License.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnilp0inter%2Frusoblanco-hugo-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fnilp0inter%2Frusoblanco-hugo-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fnilp0inter%2Frusoblanco-hugo-theme/lists"}