{"id":20140631,"url":"https://github.com/goffinet/nix-cms-theme","last_synced_at":"2026-02-11T18:11:03.074Z","repository":{"id":116034349,"uuid":"117377125","full_name":"goffinet/nix-cms-theme","owner":"goffinet","description":null,"archived":false,"fork":false,"pushed_at":"2018-01-13T20:49:02.000Z","size":541,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-08-25T08:13:28.616Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/goffinet.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2018-01-13T20:48:05.000Z","updated_at":"2018-01-13T20:49:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"e0dfafbb-cd37-4b24-acb9-38c7c674866d","html_url":"https://github.com/goffinet/nix-cms-theme","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/goffinet/nix-cms-theme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goffinet%2Fnix-cms-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goffinet%2Fnix-cms-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goffinet%2Fnix-cms-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goffinet%2Fnix-cms-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/goffinet","download_url":"https://codeload.github.com/goffinet/nix-cms-theme/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/goffinet%2Fnix-cms-theme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29340552,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-11T16:14:43.024Z","status":"ssl_error","status_checked_at":"2026-02-11T16:14:15.258Z","response_time":97,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":[],"created_at":"2024-11-13T21:52:52.198Z","updated_at":"2026-02-11T18:11:03.059Z","avatar_url":"https://github.com/goffinet.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Victor Hugo CMS Template\n\u003c!-- Markdown snippet --\u003e\n[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://github.com/bdougie/nix-theme)\n\n![nix theme image](https://s3-us-west-1.amazonaws.com/publis-brian-images/nix.png)\n\n**A [Hugo](http://gohugo.io/) boilerplate for creating truly epic websites**\n\nThis is a boilerplate for using Hugo as a static site generator and Gulp + Weback as your\nasset pipeline.\n\nIt's setup to use post-css and babel for CSS and JavaScript.\n\n## Usage\nBe sure that you have the latest node, npm and [Hugo](https://gohugo.io/overview/installing/) installed. If you need to install hugo, run:\n\nClone this repository and run:\n\n```bash\nnpm install\nnpm start\n```\n\nThen visit http://localhost:3000/ - BrowserSync will automatically reload CSS or\nrefresh the page when stylesheets or content changes.\n\nTo build your static output to the `/dist` folder, use:\n\n```bash\nnpm run build\n```\n\n## Structure\n\n```\n|--site                // Everything in here will be built with hugo\n|  |--content          // Pages and collections - ask if you need extra pages\n|  |--data             // YAML data files with any data for use in examples\n|  |--layouts          // This is where all templates go\n|  |  |--partials      // This is where includes live\n|  |  |--index.html    // The index page\n|  |--static           // Files in here ends up in the public folder\n|--src                 // Files that will pass through the asset pipeline\n|  |--css              // CSS files in the root of this folder will end up in /css/...\n|  |--js               // app.js will be compiled to /js/app.js with babel\n```\n## CMS\n\n### How it works\n\nNetlify CMS is a single-page app that you pull into the `/admin` part of your site.\n\nIt presents a clean UI for editing content stored in a Git repository.\n\nYou setup a YAML config to describe the content model of your site, and typically\ntweak the main layout of the CMS a bit to fit your own site.\n\n### Setup GitHub as a Backend\n\nIn the `config.yml` file [change the GitHub owner and repo](https://github.com/bdougie/strata-cms-template/blob/master/site/static/admin/config.yml#L3) to reflect your repo:\n\n```yaml\nbackend:\n  name: github\n  repo: owner/repo # Path to your Github repository\n  branch: master # Branch to update (master by default)\n  \n  ...\n```\nWhen a user navigates to `/admin` she'll be prompted to login, and once authenticated\nshe'll be able to create new content or edit existing content.\nThe default Github-based authenticator integrates with Netlify's [Authentication Provider feature](https://www.netlify.com/docs/authentication-providers) and the repository\nbackend integrates directly with Github's API.\n\nTo get everything hooked up, setup continuous deployment from Github to Netlify\nand then follow [the documentation](https://www.netlify.com/docs/authentication-providers)\nto setup Github as an authentication provider.\n\nThat's it, now you should be able to go to the `/admin` section of your site and\nlog in.\n\n### Find out more and contribute\n\nVisit the [Netlify CMS](https://github.com/netlify/netlify-cms/) to find out more and contribute. \n\n## Basic Concepts\n\nYou can read more about Hugo's template language in their documentation here:\n\nhttps://gohugo.io/templates/overview/\n\nThe most useful page there is the one about the available functions:\n\nhttps://gohugo.io/templates/functions/\n\nFor assets that are completely static and don't need to go through the asset pipeline,\nuse the `site/static` folder. Images, font-files, etc, all go there.\n\nFiles in the static folder ends up in the web root. So a file called `site/static/favicon.ico`\nwill end up being available as `/favicon.ico` and so on...\n\nThe `src/js/app.js` file is the entrypoint for webpack and will be built to `/dist/app.js`.\n\nYou can use ES6 and use both relative imports or import libraries from npm.\n\nAny CSS file directly under the `src/css/` folder will get compiled with [PostCSS Next](http://cssnext.io/)\nto `/dist/css/{filename}.css`. Import statements will be resolved as part of the build\n\n## Deploying to netlify\n\n- Push your clone to your own GitHub repository.\n- [Create a new site on Netlify](https://app.netlify.com/start) and link the repository.\n\nNow netlify will build and deploy your site whenever you push to git.\n\n##  Enjoy!!\n\n#### License\n\n[MIT](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoffinet%2Fnix-cms-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgoffinet%2Fnix-cms-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgoffinet%2Fnix-cms-theme/lists"}