{"id":28351476,"url":"https://github.com/phalcon/builtwith","last_synced_at":"2025-07-14T19:45:29.843Z","repository":{"id":17221328,"uuid":"19990122","full_name":"phalcon/builtwith","owner":"phalcon","description":"Websites built with Phalcon","archived":false,"fork":false,"pushed_at":"2025-05-27T21:09:33.000Z","size":104973,"stargazers_count":40,"open_issues_count":6,"forks_count":66,"subscribers_count":19,"default_branch":"master","last_synced_at":"2025-06-04T04:44:01.848Z","etag":null,"topics":["phalcon","php","website"],"latest_commit_sha":null,"homepage":"https://builtwith.phalcon.io","language":"CSS","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/phalcon.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},"funding":{"github":"phalcon","open_collective":"phalcon"}},"created_at":"2014-05-20T17:19:35.000Z","updated_at":"2025-05-27T21:09:25.000Z","dependencies_parsed_at":"2025-03-27T23:31:08.373Z","dependency_job_id":null,"html_url":"https://github.com/phalcon/builtwith","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/phalcon/builtwith","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fbuiltwith","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fbuiltwith/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fbuiltwith/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fbuiltwith/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/phalcon","download_url":"https://codeload.github.com/phalcon/builtwith/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/phalcon%2Fbuiltwith/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261029233,"owners_count":23099717,"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":["phalcon","php","website"],"created_at":"2025-05-27T22:10:53.123Z","updated_at":"2025-07-14T19:45:29.827Z","avatar_url":"https://github.com/phalcon.png","language":"CSS","funding_links":["https://github.com/sponsors/phalcon","https://opencollective.com/phalcon","https://opencollective.com/phalcon/"],"categories":[],"sub_categories":[],"readme":"# Built with Phalcon\n\nGallery of applications, demos and projects built with Phalcon\n\nhttps://builtwith.phalcon.io\n\n## Disclaimer\nThis site has been inspired by https://builtwith.angularjs.org/. The github code has been forked and adapted to Phalcon. Credits to the contributors of that project for their hard work.\n\n## Adding your project\nIf you are familiar with Jekyll, then adding a site will be very easy!\n\n1. Your site needs first a slug. This is the domain name (ignore the `www.`). So if your site is `www.sample.ld` the slug will be `sample.ld`. If your site is `blog.slug.ld` your slug will be `blog.slug.ld`.\n\n2. Fork this repository.\n\n3. Add images:\n* Create a folder under `/assets/projects` using your slug (i.e. `/assets/projects/blog.slug.ld`)\n* Add the main image for your site. The main image can named anything but it will have to be defined in the `meta.image` entry of your submission. This will be displayed in the front screen.\n* Add as many images as you like in that folder (i.e. `frontend.png`, `campaign.png`)\n\n4. Add your page:\n* Go to the `_posts` folder. You can copy one of the existing files and adjust its name. The name must be `DATE-slug.md`. The date is in the `Y-m-d` format (i.e. `2018-12-15-blog.slug.ld.md`)\n\n5. Open the file and adjust the metadata in the header. The metadata is enclosed between the `---` lines. Please be careful since errors here will not allow your site to be displayed. The metadata section resembles the `yaml` format\n\n```yaml\n---\nlayout: post                                        // Do not change this\ntitle: 'The Slug Sample site'                       // Add a small title\nstub: 'blog.slug.ld'                                // The unique slug\ntags:                                               // One tag per line prefixed by `-`\n  - production\n  - productivity\n  - forum\n  - mysql\n  - github\nmeta:\n  image: 'thumb.png'                                // The main image for the entry\n  author:\n    name: 'Nikolaos Dimopoulos'                     // Your name (can leave blank)\n    avatar: ''                                      // Github avatar or other\n    github: 'https://github.com/niden'              // Github profile\n    bitbucket: ''                                   // Bitbucket profile\n    gitlab: ''                                      // Gitlab profile                                      \n  site:\n    tags:                                           // One tag per line prefixed by `-` (same as above)\n      - production\n      - productivity\n      - forum\n      - mysql\n      - github\n    link: 'https://blog.slug.ld'                    // Website URL\n    social:\n      github: 'https://github.com/niden/slug.ld'    // If the source code is available\n      facebook: ''                                  // Facebook page/group for the site\n      twitter: ''                                   // Twitter account for the site\n      discord: ''                                   // Discord channel for the site\nimages:                                             // If you don't have any images leave the below empty\n  - name: 'hmscreen1.png'                           // Name of first image\n    text: 'Event Log/Dashboard'                     // Description of first image\n  - name: 'hmscreen2.png'                           // Name of second image\n    text: 'Campaign Pre-Send Screen'                // Description of second image\n---\n```\n\n6. Add the summary/description for your site. You will notice that there is a `\u003c!--more--\u003e` tag in the file you just copied. That placeholder splits the content and whatever is above it will show in the front page, while the rest will show in the page of your project. Please do not allow more than a handful of lines to be displayed at the front page to allow for an easy flow of reading and displaying projects.\n\n7. Issue a pull request\n\n## Sponsors\n\nBecome a sponsor and get your logo on our README on Github with a link to your site. [[Become a sponsor](https://opencollective.com/phalcon#sponsor)]\n\n\u003ca href=\"https://opencollective.com/phalcon/#contributors\"\u003e\n\u003cimg src=\"https://opencollective.com/phalcon/tiers/sponsors.svg?avatarHeight=48\u0026width=800\"\u003e\n\u003c/a\u003e\n\n## Backers\n\nSupport us with a monthly donation and help us continue our activities. [[Become a backer](https://opencollective.com/phalcon#backer)]\n\n\u003ca href=\"https://opencollective.com/phalcon/#contributors\"\u003e\n\u003cimg src=\"https://opencollective.com/phalcon/tiers/backers.svg?avatarHeight=48\u0026width=800\u0026height=200\"\u003e\n\u003c/a\u003e\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphalcon%2Fbuiltwith","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphalcon%2Fbuiltwith","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphalcon%2Fbuiltwith/lists"}