{"id":18388299,"url":"https://github.com/cecilapp/theme-fontawesome","last_synced_at":"2026-01-29T23:02:49.677Z","repository":{"id":207379513,"uuid":"719120658","full_name":"Cecilapp/theme-fontawesome","owner":"Cecilapp","description":"The Font Awesome component theme for Cecil provides helpers to use Font Awesome icons.","archived":false,"fork":false,"pushed_at":"2025-09-25T13:01:51.000Z","size":1087,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-16T22:09:49.755Z","etag":null,"topics":["cecil","cecil-theme-component","font","icons"],"latest_commit_sha":null,"homepage":"https://cecil.app/themes/components/","language":"Twig","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/Cecilapp.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},"funding":{"github":"ArnaudLigny","open_collective":"cecil"}},"created_at":"2023-11-15T13:53:54.000Z","updated_at":"2025-09-25T13:01:36.000Z","dependencies_parsed_at":"2024-01-11T20:45:30.052Z","dependency_job_id":"645add99-c970-4372-b4d7-87c4557f88e2","html_url":"https://github.com/Cecilapp/theme-fontawesome","commit_stats":{"total_commits":7,"total_committers":2,"mean_commits":3.5,"dds":0.2857142857142857,"last_synced_commit":"7505919bfebd42edf3a65dd0b0d20ae873c7fa41"},"previous_names":["cecilapp/theme-fontawesome"],"tags_count":7,"template":false,"template_full_name":null,"purl":"pkg:github/Cecilapp/theme-fontawesome","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Ftheme-fontawesome","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Ftheme-fontawesome/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Ftheme-fontawesome/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Ftheme-fontawesome/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Cecilapp","download_url":"https://codeload.github.com/Cecilapp/theme-fontawesome/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Cecilapp%2Ftheme-fontawesome/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28889863,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-29T21:06:44.224Z","status":"ssl_error","status_checked_at":"2026-01-29T21:06:42.160Z","response_time":59,"last_error":"SSL_read: 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":["cecil","cecil-theme-component","font","icons"],"created_at":"2024-11-06T01:33:37.686Z","updated_at":"2026-01-29T23:02:49.672Z","avatar_url":"https://github.com/Cecilapp.png","language":"Twig","funding_links":["https://github.com/sponsors/ArnaudLigny","https://opencollective.com/cecil"],"categories":[],"sub_categories":[],"readme":"# Font Awesome component theme\n\nThe _Font Awesome_ component theme for [Cecil](https://cecil.app) provides helpers to use [Font Awesome icons](https://fontawesome.com/search?o=r\u0026m=free\u0026s=solid%2Cregular\u0026f=brands%2Cclassic).\n\n## Installation\n\n```bash\ncomposer require cecil/theme-fontawesome\n```\n\n\u003e Or [download the latest archive](https://github.com/Cecilapp/theme-fontawesome/releases/latest/) and uncompress its content in `themes/fontawesome`.\n\n## Usage\n\nAdd `fontawesome` in the `theme` section of the `config.yml`:\n\n```yaml\ntheme:\n  - fontawesome\n```\n\nInclude styles and webfonts in the `\u003chead\u003e` of your template:\n\n```twig\n{{ include('partials/fontawesome.twig') }}\n```\n\n\u003e By default, it includes _regular_, _solid_, and _brands_ icons, but you can select only the one(s) you want using the `styles` array, i.e.:\n\u003e `{{ include('partials/fontawesome.twig', {styles: ['brands']}) }}`\n\nThen import macro in your template:\n\n```twig\n{% import 'macros/fontawesome.twig' as fontawesome %}\n```\n\nDisplay the desired icon:\n\n```twig\n{{ fontawesome.icon('\u003cname\u003e', '\u003cstyle\u003e', '\u003csize\u003e', '\u003crotate\u003e', '\u003cflip\u003e', '\u003cattributes\u003e') }}\n```\n\n- `\u003cname\u003e`: name of the [icon](https://fontawesome.com/search?o=r\u0026m=free\u0026s=solid%2Cregular\u0026f=brands%2Cclassic)\n- `\u003cstyle\u003e`: style (\"regular\", \"solid\" or \"brands\". \"regular\" by default)\n- `\u003csize\u003e`: font [size](https://fontawesome.com/docs/web/style/size) (optional)\n- `\u003crotate\u003e`: rotation in degrees (\"90\", \"180\", \"270\" or custom)\n- `\u003cflip\u003e`: flipping (\"horizontal\", \"vertical\" or \"both\")\n- `\u003cattributes\u003e`: additional HTML attributes (optional)\n\n## Example\n\n```twig\n{{ fontawesome.icon(name:'github', style:'brands', size:'xl', attributes:{style: 'color: #333'}) ~}}\n```\n\n```html\n\u003ci class=\"fa-github fa-brands fa-xl\" style=\"color: #333\"\u003e\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcecilapp%2Ftheme-fontawesome","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcecilapp%2Ftheme-fontawesome","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcecilapp%2Ftheme-fontawesome/lists"}