{"id":16175225,"url":"https://github.com/app-generator/eleventy-soft-ui-pro","last_synced_at":"2025-04-07T11:13:53.620Z","repository":{"id":100502934,"uuid":"337794536","full_name":"app-generator/eleventy-soft-ui-pro","owner":"app-generator","description":"Eleventy (11ty) - Soft UI Design System PRO | AppSeed","archived":false,"fork":false,"pushed_at":"2021-02-12T09:24:44.000Z","size":4608,"stargazers_count":0,"open_issues_count":0,"forks_count":2,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-04-06T18:13:26.529Z","etag":null,"topics":["appseed","eleventy","soft-design-system"],"latest_commit_sha":null,"homepage":"https://appseed.us/product/eleventy-soft-ui-pro","language":null,"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/app-generator.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","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":"2021-02-10T17:09:07.000Z","updated_at":"2023-05-26T18:21:17.000Z","dependencies_parsed_at":"2023-05-15T11:15:17.165Z","dependency_job_id":null,"html_url":"https://github.com/app-generator/eleventy-soft-ui-pro","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Feleventy-soft-ui-pro","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Feleventy-soft-ui-pro/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Feleventy-soft-ui-pro/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/app-generator%2Feleventy-soft-ui-pro/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/app-generator","download_url":"https://codeload.github.com/app-generator/eleventy-soft-ui-pro/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247640467,"owners_count":20971558,"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":["appseed","eleventy","soft-design-system"],"created_at":"2024-10-10T04:44:24.763Z","updated_at":"2025-04-07T11:13:53.602Z","avatar_url":"https://github.com/app-generator.png","language":null,"funding_links":[],"categories":[],"sub_categories":[],"readme":"# [Eleventy Soft UI PRO](https://appseed.us/product/eleventy-soft-ui-pro)\n\n\u003e Eleventy (11ty) seed project - Features:\n\n\u003cbr /\u003e\n\n- UI Kit: **[Soft UI Design System PRO](http://bit.ly/3730QW3)** (Pro Version) by **Creative-Tim**\n- Render Engine: Nunjunks / Markdown (for blog posts)\n- CSS Pipeline (Sass, CleanCSS)\n- JS Bundling (Webpack)\n- SVG Icon Sprite Generation\n- Critical CSS, HTML Minification\n- Support via **Github** and [Discord](https://discord.gg/fZC6hup).\n\n\u003cbr /\u003e\n\n**Codebase Credits**\n\n- Initially forked from [Eleventastic](http://github.com/maxboeck/eleventastic) / [Max Böck](https://github.com/maxboeck)\n- More **11ty** inspiration from: [EleventyOne](https://github.com/philhawksworth/eleventyone), [Supermaya](https://github.com/MadeByMike/supermaya) \n\n\u003cbr /\u003e\n\n\u003e Links\n\n- [Eleventy Soft UI PRO](https://appseed.us/product/eleventy-soft-ui-pro) - Product page\n- [Eleventy Soft UI PRO Demo](https://eleventy-soft-ui-pro.appseed-srv1.com/) - LIVE Demo\n\n\u003cbr /\u003e\n\n![Soft UI Design System - Template project provided by AppSeed in Eleventy (11ty).](https://raw.githubusercontent.com/app-generator/eleventy-soft-ui-pro/main/media/eleventy-soft-ui-pro-intro.gif)\n\n\u003cbr /\u003e\n\n## Build from sources\n\n```bash\n$ # Clone the sources\n$ git clone https://github.com/app-generator/priv-eleventy-soft-ui-pro.git\n$ cd priv-eleventy-soft-ui-pro\n$\n$ # Install modules\n$ npm install # OR `yarn`\n$\n$ # Start for development\n$ npm start # OR `yarn start`\n$\n$ # Access the project in browser:\n$ # http://127.0.0.1:8080/ \n$\n$ # Production Build\n$ npm build # OR `yarn build`\n```\n\n\u003cbr /\u003e\n\n## Codebase structure\n\nThe project has a simple structure, represented as bellow:\n\n```bash\n\u003c PROJECT ROOT \u003e\n   |\n   |-- src/\n   |    |-- data/\n   |    |    |-- meta.json            # Provides META information \n   |    |    |-- app.json             # Provides APP information\n   |    |\n   |    |-- includes/                 # Page chunks, components\n   |    |    |-- navigation.njk       # Top bar\n   |    |    |-- sidebar.njk          # Left sidebar\n   |    |    |-- scripts.njk          # JS scripts common to all pages\n   |    |    |-- footer.njk           # The common footer\n   |    |\n   |    |-- layouts/                  # App Layouts (the master pages)\n   |    |    |-- base.njk             # Used by common pages like index, UI\n   |    |    |-- base-fullscreen.njk  # Used by auth pages (login, register)\n   |    |   \n   |    |-- index.njk                 # The default page\n   |    |-- *.njk                     # All other pages provided by the UI Kit\n   |\n   |-- utils/                         # JS Helpers\n   |\n   |-- .eleventy.js                   # 11ty Config\n   |-- netlify.toml                   # Netlify deployer\n   |\n   |-- ************************************************************************\n```\n\n\u003cbr /\u003e\n\n## Deploy a fork of this template to Netlify\n\n[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/app-generator/priv-eleventy-soft-ui-pro)\n\n## CSS\n\nStyling works with Sass. The main index file is in `src/static/assets/styles/main.scss`. Import any SCSS code you want in there; it will be processed and optimized. The output is in `dist/static/assets/styles/main.css`\n\n## JS\n\nJavascript can be written in ES6 syntax. The main index file is in `src/static/assets/scripts/main.js`. It will be transpiled to ES5 with babel, bundled together with webpack, and minified in production. The output is in `dist/static/assets/scripts/main.js`\n\n## SVG Icons\n\nAll SVG files added to `src/static/assets/icons` will be bundled into a `symbol` sprite file. The SVG filename will then be used as the symbol identifier and the icon can be used as a shortcode.\n\nFor example, if you have a `github.svg` file in that folder, you can display it anywhere by using `{% icon \"github\" %}` in your templates.\n\n## Critical CSS\n\nCurrently, critical CSS will only be inlined in the head of the homepage. This is done by using the [critical](https://github.com/addyosmani/critical) package in an automatic transform.\n\n\u003cbr /\u003e\n\n---\n[Eleventy Soft UI PRO](https://appseed.us/product/eleventy-soft-ui-pro) - Provided by **AppSeed** [App Generator](https://appseed.us/app-generator).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Feleventy-soft-ui-pro","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fapp-generator%2Feleventy-soft-ui-pro","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fapp-generator%2Feleventy-soft-ui-pro/lists"}