{"id":22960149,"url":"https://github.com/zemfrog/zemfrog-quasar","last_synced_at":"2026-02-01T22:31:21.131Z","repository":{"id":103950806,"uuid":"356969060","full_name":"zemfrog/zemfrog-quasar","owner":"zemfrog","description":"Quasar Framework Integration","archived":false,"fork":false,"pushed_at":"2021-04-11T21:19:20.000Z","size":5,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-11-29T07:13:26.634Z","etag":null,"topics":["quasar","zemfrog","zemfrog-theme"],"latest_commit_sha":null,"homepage":"","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/zemfrog.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":"2021-04-11T20:11:08.000Z","updated_at":"2021-04-11T21:19:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"76539db9-6731-4682-bf26-b1a7ce485391","html_url":"https://github.com/zemfrog/zemfrog-quasar","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/zemfrog/zemfrog-quasar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemfrog%2Fzemfrog-quasar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemfrog%2Fzemfrog-quasar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemfrog%2Fzemfrog-quasar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemfrog%2Fzemfrog-quasar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/zemfrog","download_url":"https://codeload.github.com/zemfrog/zemfrog-quasar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/zemfrog%2Fzemfrog-quasar/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28993252,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-01T22:01:47.507Z","status":"ssl_error","status_checked_at":"2026-02-01T21:58:37.335Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5: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":["quasar","zemfrog","zemfrog-theme"],"created_at":"2024-12-14T18:31:01.421Z","updated_at":"2026-02-01T22:31:21.115Z","avatar_url":"https://github.com/zemfrog.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Zemfrog Quasar\n\nQuasar Framework Integration\n\n# Features\n\n* Support vue v2\n* Added Vuex \u0026 Vue-Router\n* Integrated with Quasar\n\n\n# Usage\n\nInstall this\n\n```sh\npip install zemfrog-quasar\n```\n\nAdd this to the `ZEMFROG_THEMES` configuration\n\n```python\nZEMFROG_THEMES = [\"zemfrog_quasar\"]\n```\n\n# Quick Tutorial\n\nIn this theme, several jinja blocks are available, such as:\n\n* `meta` - List of meta tags to include\n* `links` - This is to be included in the head tag as (`link`, `title`, etc)\n* `content` - This is to be included in the main tag (`div#q-app`)\n* `js` - The js script that will be included, after vue, vuex, vue-router \u0026 quasar\n* `vuex` - Configuration passed to vuex\n* `vue_router` - Configuration passed to vue-router\n* `vue` - Configuration passed to vue\n\n\n## Layouts\n\nExamples of using layouts:\n\n```html\n{% extends 'quasar/layout.html' %}\n```\n\n## Links\n\nAn example of using block links, below we add material icons. By default it doesn't come with an icon, so you have to add it yourself.\n\n```html\n{% block links %}\n\u003clink href=\"https://fonts.googleapis.com/css?family=Roboto:100,300,400,500,700,900|Material+Icons\" rel=\"stylesheet\" type=\"text/css\"\u003e\n{% endblock %}\n```\n\n## Content\n\nAn example of using block content:\n\n```html\n{% block content %}\n\u003cq-toolbar class=\"text-primary\"\u003e\n    \u003cq-btn flat round dense icon=\"menu\" \u003e\u003c/q-btn\u003e\n    \u003cq-toolbar-title\u003e\n    Toolbar\n    \u003c/q-toolbar-title\u003e\n    \u003cq-btn flat round dense icon=\"more_vert\" \u003e\u003c/q-btn\u003e\n\u003c/q-toolbar\u003e\n{% endblock %}\n```\n\n## Vue\n\nExamples of using vue:\n\n```html\n{% block content %}\n\u003cq-toolbar class=\"text-primary\"\u003e\n    \u003cq-btn flat round dense icon=\"menu\" @click=\"active = !active\"\u003e\u003c/q-btn\u003e\n    \u003cq-toolbar-title\u003e\n    Is this active? \u003c{ active }\u003e\n    \u003c/q-toolbar-title\u003e\n    \u003cq-btn flat round dense icon=\"more_vert\" \u003e\u003c/q-btn\u003e\n\u003c/q-toolbar\u003e\n{% endblock %}\n{% block vue %}\ndata() {\n    return {\n        active: false\n    }\n},\n{% endblock %}\n```\n\nIn the example above, there are several explanations. See below:\n\n* We add `data` to vue via the `vue block`\n* We also change the vue delimiter to `\u003c{`, `}\u003e`\n\n# Quasar\n\nIf you use this, you can't use the self-closing tag. See here https://quasar.dev/start/umd#usage\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzemfrog%2Fzemfrog-quasar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fzemfrog%2Fzemfrog-quasar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fzemfrog%2Fzemfrog-quasar/lists"}