{"id":13804734,"url":"https://github.com/veltiosoft/vss","last_synced_at":"2025-05-13T18:32:47.503Z","repository":{"id":50662050,"uuid":"516830077","full_name":"veltiosoft/vss","owner":"veltiosoft","description":"Easy-to-use static site generator","archived":false,"fork":false,"pushed_at":"2024-08-09T11:50:18.000Z","size":7444,"stargazers_count":37,"open_issues_count":30,"forks_count":3,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-05-10T06:57:54.831Z","etag":null,"topics":["cli","cms","content-management-system","static-site-generator","v","vlang"],"latest_commit_sha":null,"homepage":"","language":"V","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/veltiosoft.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":"CODE_OF_CONDUCT.md","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":"2022-07-22T17:11:41.000Z","updated_at":"2025-03-05T02:55:14.000Z","dependencies_parsed_at":"2024-11-13T21:02:28.389Z","dependency_job_id":null,"html_url":"https://github.com/veltiosoft/vss","commit_stats":null,"previous_names":["veltiosoft/vss","vssio/vss"],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltiosoft%2Fvss","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltiosoft%2Fvss/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltiosoft%2Fvss/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/veltiosoft%2Fvss/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/veltiosoft","download_url":"https://codeload.github.com/veltiosoft/vss/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254003436,"owners_count":21997887,"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":["cli","cms","content-management-system","static-site-generator","v","vlang"],"created_at":"2024-08-04T01:00:53.385Z","updated_at":"2025-05-13T18:32:43.996Z","avatar_url":"https://github.com/veltiosoft.png","language":"V","funding_links":[],"categories":["Applications"],"sub_categories":["Web"],"readme":"# vss\n\nvss is an easy to use static site generator. With `layout/index.html`, Markdown\ncontent, and a little configuration, you can easily build your website!\n\n- **Easy** to use\n- Create site content with **Markdown**\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"./image.gif\" alt=\"vss\" width=\"738\"\u003e\n\u003c/p\u003e\n\n![CI](https://github.com/zztkm/vss/workflows/CI/badge.svg)\n\n## Caution\n\nvss is still under development and the API is not stable. Be aware that\ndisruptive changes may be made!\n\n## Usage\n\n### Setup contents\n\nCurrently, be sure to configure the following\n\n```\n❯ tree  \n.\n├── about.md\n├── config.toml\n├── index.md\n├── layouts\n│   └── index.html\n└── static\n    ├── css\n    │   └── main.css\n    └── js\n        └── main.js\n```\n\n❯ cat index.md\n\n```markdown\n# Open Sea\n\nA static site generator\n\n- [GitHub](https://github.com/zztkm)\n\n[about page](./about.md)\n```\n\n❯ cat config.toml\n\n```toml\ntitle = \"Open Sea\"\ndescription = \"Takumi Tsuruta's home page\"\nbase_url = 'https://zztkm.github.io/vss/'\n```\n\n❯ cat layouts/index.html\n\n```html\n\u003c!DOCTYPE html\u003e\n\n\u003chead\u003e\n    \u003cmeta charset=\"utf-8\"\u003e\n    \u003ctitle\u003e@title\u003c/title\u003e\n    \u003cbase href=\"@baseUrl\"\u003e\n    \u003cmeta name=\"description\" content=\"@description\" /\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n    @contents\n\u003c/body\u003e\n```\n\nBuild your site\n\n```\nvss build\n```\n\nOutput\n\n```\n❯ tree dist\ndist\n├── about.html\n├── css\n│   └── main.css\n├── index.html\n└── js\n    └── main.js\n```\n\n❯ cat dist/index.html\n\n```html\n\u003c!DOCTYPE html\u003e\n\n\u003chead\u003e\n    \u003cmeta charset=\"utf-8\"\u003e\n    \u003ctitle\u003eOpen Sea\u003c/title\u003e\n    \u003cbase href=\"https://zztkm.github.io/vss/\"\u003e\n    \u003cmeta name=\"description\" content=\"Takumi Tsuruta's home page\" /\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n    \u003ch1\u003eOpen Sea\u003c/h1\u003e\n\u003cp\u003eA static site generator\u003c/p\u003e\n\u003cul\u003e\n\u003cli\u003e\u003ca href=\"https://github.com/zztkm\"\u003eGitHub\u003c/a\u003e\u003c/li\u003e\n\u003c/ul\u003e\n\u003cp\u003e\u003ca href=\"./about.html\"\u003eabout page\u003c/a\u003e\u003c/p\u003e\n\u003c/body\u003e\n```\n\n## Example\n\nExamples can be found at the\n[example](https://github.com/zztkm/vss/tree/main/example) directory.\n\n## Installation\n\n### (Recommended) Install Script\n\nWith Shell(For Mac \u0026 Linux):\n\n```shell\ncurl -fsSL https://raw.githubusercontent.com/vssio/vss_install/main/install.sh | sh\n```\n\nWith PowerShell(for Windows):\n\n```powershell\nirm https://raw.githubusercontent.com/vssio/vss_install/main/install.ps1 | iex\n```\n\nMore information: https://github.com/vssio/vss_install\n\n### Get the binary\n\nDownload from [Releases](https://github.com/zztkm/vss/releases)\n\n### Build from source\n\n```\ngit clone https://github.com/vssio/vss.git\ncd vss\n\nv install markdown\n\nv . -o vss\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveltiosoft%2Fvss","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fveltiosoft%2Fvss","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fveltiosoft%2Fvss/lists"}