{"id":43234240,"url":"https://github.com/getscissorhands/getscissorhands.github.io","last_synced_at":"2026-02-01T10:35:09.811Z","repository":{"id":101200380,"uuid":"48806639","full_name":"getscissorhands/getscissorhands.github.io","owner":"getscissorhands","description":"This is the main website of GetScissorhands.NET","archived":false,"fork":false,"pushed_at":"2025-12-26T12:55:44.000Z","size":3213,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-12-27T18:16:37.243Z","etag":null,"topics":["blazor","dotnet","static-site-generator"],"latest_commit_sha":null,"homepage":"http://getscissorhands.app/","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/getscissorhands.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":"2015-12-30T15:22:51.000Z","updated_at":"2025-12-26T12:55:48.000Z","dependencies_parsed_at":"2023-04-26T17:05:16.545Z","dependency_job_id":null,"html_url":"https://github.com/getscissorhands/getscissorhands.github.io","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/getscissorhands/getscissorhands.github.io","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getscissorhands%2Fgetscissorhands.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getscissorhands%2Fgetscissorhands.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getscissorhands%2Fgetscissorhands.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getscissorhands%2Fgetscissorhands.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/getscissorhands","download_url":"https://codeload.github.com/getscissorhands/getscissorhands.github.io/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/getscissorhands%2Fgetscissorhands.github.io/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28976328,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T09:57:52.632Z","status":"ssl_error","status_checked_at":"2026-02-01T09:57:49.143Z","response_time":56,"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":["blazor","dotnet","static-site-generator"],"created_at":"2026-02-01T10:35:08.512Z","updated_at":"2026-02-01T10:35:09.807Z","avatar_url":"https://github.com/getscissorhands.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Minimal Blog Theme\n\nA minimal blog theme using Tailwind CSS for ScissorHands.NET, inspired by [astro-minimal-blog](https://github.com/alexanderhodes/astro-minimal-blog).\n\n## Theme Structure\n\nThis is the overall structure of the theme.\n\n```text\n.\n└── src/\n    ├── assets/\n    │   ├── css/\n    │   │   └── theme.css\n    │   ├── images/\n    │   │   ├── logo.png\n    │   │   ├── moon-icon.svg\n    │   │   └── sun-icon.svg\n    │   └── js/\n    │       └── theme.js\n    │\n    ├── favicon.ico\n    │\n    ├── theme.json\n    │\n    ├── Components/\n    │   ├── Header.razor\n    │   ├── Footer.razor\n    │   ├── PostCard.razor\n    │   └── TagList.razor\n    ├── _Imports.razor\n    ├── MainLayout.razor\n    ├── IndexView.razor\n    ├── PostView.razor\n    └── PageView.razor\n```\n\n## Getting Started\n\n### GitHub NuGet Package Registry\n\n### Theme Manifest \u0026ndash; `theme.json`\n\n- `theme.json` defines the metadata of the theme.\n\n    ```jsonc\n    {\n      \"name\": \"Minimal Blog\",\n      \"version\": \"1.0.0\",\n      \"description\": \"A minimal blog theme using Tailwind CSS for ScissorHands.NET, inspired by [astro-minimal-blog](https://github.com/alexanderhodes/astro-minimal-blog).\",\n      \"slug\": \"minimal-blog\",\n      \"stylesheets\": [\n        \"/assets/css/theme.css\"\n      ],\n      \"scripts\": [\n        \"/assets/js/theme.js\"\n      ]\n    }\n    ```\n\n  You can have one or more CSS and JavaScript files. If you choose to do so, make sure to include them all in this `theme.json`.\n\n### Layout Components\n\n#### `_Imports.razor` Global Component\n\n- It defines the global namespace and using directives.\n\n    ```razor\n    @using ScissorHands.Core.Manifests\n    @using ScissorHands.Core.Models\n    @using ScissorHands.Theme.MinimalBlog.Components.Footer\n    @using ScissorHands.Theme.MinimalBlog.Components.Header\n    @using ScissorHands.Theme.MinimalBlog.Components.PostCard\n    @using ScissorHands.Theme.MinimalBlog.Components.TagList\n    \n    @using Theme = ScissorHands.Core.Manifests.ThemeManifest\n    \n    @namespace ScissorHands.Theme.MinimalBlog\n    ```\n\n#### `MainLayout.razor` Layout Component\n\n- This is the overall HTML layout structure.\n- It calls both UI components and plugin components.\n\n#### `IndexView.razor` Page Component\n\n- This is the landing page of your static website.\n\n#### `PostView.razor` Page Component\n\n- This is the blog post page.\n\n#### `PageView.razor` Page Component\n\n- This is the non-blog post page.\n\n### UI Components\n\n- The list of UI components used in this theme are:\n  - Header\n  - Footer\n  - PostCard\n  - TagList\n\n## Previewing Theme\n\n1. Set environment variables for GitHub NuGet Package Registry.\n\n    ```bash\n    # zsh/bash\n    export GH_PACKAGE_USERNAME=\"\u003cGITHUB_USERNAME\u003e\"\n    export GH_PACKAGE_TOKEN=\"\u003cGITHUB_TOKEN\u003e\"\n    ```\n\n    ```powershell\n    # PowerShell\n    $env:GH_PACKAGE_USERNAME = \"\u003cGITHUB_USERNAME\u003e\"\n    $env:GH_PACKAGE_TOKEN = \"\u003cGITHUB_TOKEN\u003e\"\n    ```\n\n1. Add a NuGet package for the theme.\n\n    ```bash\n    dotnet add package ScissorHands.Theme --prerelease\n    ```\n\n1. Create a symbolic link under the `themes` directory.\n\n    ```bash\n    # zsh/bash\n    REPOSITORY_ROOT=$(git rev-parse --show-toplevel)\n    ln -s $REPOSITORY_ROOT/src $REPOSITORY_ROOT/preview/ScissorHands/themes/minimal-blog\n    ```\n\n    ```powershell\n    # PowerShell\n    $REPOSITORY_ROOT = git rev-parse --show-toplevel\n    New-Item -ItemType SymbolicLink -Path \"$REPOSITORY_ROOT/preview/ScissorHands/themes/minimal-blog\" -Target \"$REPOSITORY_ROOT/src\"\n    ```\n\n1. Run the app.\n\n    ```bash\n    dotnet run --project ./preview/ScissorHands -- --preview\n    ```\n\n1. Verify the generated HTML properly renders your theme.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetscissorhands%2Fgetscissorhands.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgetscissorhands%2Fgetscissorhands.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgetscissorhands%2Fgetscissorhands.github.io/lists"}