├── .github └── workflows │ └── jekyll.yml ├── .gitignore ├── .ruby-version ├── 404.md ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _includes ├── analytics.html ├── fanart.html ├── footer.html ├── header.html ├── js.html ├── meta.html ├── sponsors.html └── widget.html ├── _layouts ├── default.html └── post.html ├── _posts ├── 2014-01-03-forum.phalconphp.com.md ├── 2014-06-02-hypermailer.md ├── 2014-06-27-hurma.tv.md ├── 2014-06-30-delete.im.md ├── 2014-07-16-robinson.rs.md ├── 2014-07-17-giadamusic.com.md ├── 2014-07-21-danzerlogs.com.md ├── 2014-08-02-quidditchuk.org.md ├── 2014-11-13-yonacms.com.md ├── 2014-11-24-rightcasino.com.md ├── 2014-12-31-24sata.rs.md ├── 2015-04-21-oisie.com.md ├── 2015-05-09-free-templates.lt.md ├── 2015-11-12-polang.info.md ├── 2017-04-24-outsmart.io.md ├── 2017-10-11-socialveo.com.md ├── 2017-10-18-marchiauto.it.md ├── 2017-10-29-descontocupom.com.br.md ├── 2018-02-21-learny.online.md └── 2020-12-22-tvnfo.com.md ├── _redirects ├── assets ├── css │ ├── dark.css │ └── style.css ├── favicons │ ├── android-chrome-192x192.png │ ├── android-chrome-512x512.png │ └── site.webmanifest ├── js │ ├── main.js │ ├── main.min.js │ └── theme-switcher.js └── projects │ ├── 24sata.rs │ ├── 24sata-2.png │ ├── 24sata-3.png │ └── thumb.png │ ├── danzerlogs.com │ └── thumb.png │ ├── delete.im │ ├── angled.jpg │ ├── sending.png │ ├── thumb.png │ └── viewing.png │ ├── descontocupom.com.br │ └── thumb.png │ ├── forum.phalconphp.com │ ├── forum01.png │ ├── forum02.png │ ├── forum03.png │ ├── forum04.png │ └── thumb.png │ ├── free-templates.lt │ ├── ss1.png │ ├── ss2.png │ ├── ss3.png │ └── thumb.png │ ├── giadamusic.com │ └── thumb.png │ ├── hurma.tv │ └── thumb.png │ ├── hypermailer │ ├── hmscreen1.png │ ├── hmscreen2.png │ ├── hmscreen3.png │ ├── hmscreen4.png │ ├── hmscreen5.png │ └── thumb.png │ ├── learny.online │ ├── cursos.jpg │ ├── home.jpg │ ├── paginas-informativas.jpg │ ├── perfiles.jpg │ └── thumb.png │ ├── marchiauto.it │ ├── marchi.png │ ├── marchi1.png │ └── thumb.png │ ├── oisie.com │ ├── ss1.png │ ├── ss2.png │ └── thumb.png │ ├── outsmart.io │ └── thumb.png │ ├── polang.info │ ├── detail.jpg │ ├── index.jpg │ ├── mobile.png │ └── thumb.png │ ├── quidditchuk.org │ ├── backend.png │ ├── backend2.png │ ├── frontend.png │ ├── frontend2.png │ └── thumb.png │ ├── rightcasino.com │ └── thumb.png │ ├── robinson.rs │ ├── backend.jpg │ ├── frontend.jpg │ └── thumb.png │ ├── socialveo.com │ ├── ios-app-1.png │ ├── ios-app-2.png │ ├── ios-app-3.png │ ├── ios-app-4.png │ ├── ios-app-5.png │ ├── rich_features_1.png │ ├── rich_features_2.png │ ├── thumb.png │ ├── webapp-1.png │ ├── webapp-3.png │ ├── webapp-4.png │ ├── webapp-5.png │ └── webapp-6.png │ ├── tvnfo.com │ └── home.png │ └── yonacms.com │ └── thumb.svg ├── build.sh ├── humans.txt ├── index.html ├── old-site ├── projects.json └── projects │ ├── 9score │ ├── index.html │ └── thumb.png │ ├── CG-Londrina │ ├── thumb.jpg │ ├── website01.jpg │ ├── website02.jpg │ ├── website03.jpg │ ├── website04.jpg │ └── website05.jpg │ ├── bootlegger-trail-race │ ├── records.png │ ├── results.png │ ├── runner-search.png │ └── thumb.png │ ├── dealdoodle-uk │ ├── dealdoodle_uk_categories.png │ ├── dealdoodle_uk_login.png │ ├── dealdoodle_uk_stores.png │ └── thumb.png │ ├── footballinclusive │ ├── champions-league-2015-2016.png │ ├── contribution-board.png │ ├── germany-vs-argentina-world-cup-2014.png │ └── thumb.png │ ├── homediary │ └── thumb.png │ ├── imeidata │ ├── blacklist_check.png │ ├── imei_check.png │ ├── iphone_check.png │ └── thumb.png │ ├── imgholdr │ └── thumb.png │ ├── istebenimstilim │ ├── thumb.png │ ├── website01.png │ ├── website02.png │ └── website03.png │ ├── jream │ ├── thumb.jpg │ └── thumb.png │ ├── kabar-indonesia-pintar │ ├── thumb.jpg │ └── thumb.png │ ├── karakurihiden │ └── thumb.png │ ├── king-of-episodes │ ├── show.png │ ├── thumb.png │ └── watch.png │ ├── kiwisoft │ └── thumb.png │ ├── mailfinder │ ├── dashboard.jpg │ ├── login.jpg │ ├── payment.jpg │ ├── thumb.png │ └── verify.jpg │ ├── meteoblue │ ├── meteogram.jpg │ ├── overview.jpg │ ├── radar.jpg │ ├── satellite.jpg │ ├── search.jpg │ └── thumb.png │ ├── mongosilakan │ └── thumb.png │ ├── newintoday │ └── thumb.png │ ├── nhieuviec │ └── thumb.png │ ├── phalcon-jobs │ └── thumb.png │ ├── phalcon-tip │ └── thumb.png │ ├── phalconphp-forum │ ├── forum01.png │ ├── forum02.png │ ├── forum03.png │ ├── forum04.png │ └── thumb.png │ ├── phalconphp-website │ ├── thumb.png │ ├── website01.png │ ├── website02.png │ ├── website03.png │ ├── website04.png │ └── website05.png │ ├── phanbook │ └── home.png │ ├── piggybank │ ├── full.png │ ├── landing.png │ └── thumb.png │ ├── practican-com │ └── thumb.png │ ├── prakse-lv │ ├── career-page.png │ ├── index.png │ ├── profile.png │ ├── thumb.png │ └── virtual-internship.png │ ├── qrmaker │ └── thumb.png │ ├── querobarato │ └── thumb.png │ ├── robertbojorcv │ └── thumb.png │ ├── safe_password_generate-Phalcon │ ├── test │ └── thumb.png │ ├── sauny-24 │ ├── blog.png │ ├── search.png │ └── thumb.png │ ├── searchmo │ └── thumb.png │ ├── shorturl │ └── thumb.png │ ├── smores │ ├── dashboard.png │ ├── login.png │ ├── registration.png │ └── thumb.png │ ├── stolarstwogiemza │ └── thumb.png │ ├── tasker │ ├── task-list.png │ └── thumb.png │ ├── the-dealio │ └── thumb.png │ ├── thedealsco │ ├── thedealsco-large.png │ ├── thedealsco-large2.png │ └── thumb.png │ ├── tsltranslator │ └── thumb.png │ ├── tutor-hero │ ├── 01.png │ ├── 02.png │ ├── 03.png │ ├── 04.png │ ├── 05.png │ ├── 06.png │ ├── readme.txt │ └── thumb.png │ ├── unturnedserv │ └── thumb.png │ ├── usacycling │ ├── myusac.png │ └── thumb.png │ ├── wallstreetcn │ └── thumb.png │ ├── whichbingo │ └── thumb.png │ └── yuyangongfu │ └── thumb.png ├── robots.txt ├── serve ├── tags.html └── updateData.php /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- 1 | # This workflow uses actions that are not certified by GitHub. 2 | # They are provided by a third-party and are governed by 3 | # separate terms of service, privacy policy, and support 4 | # documentation. 5 | 6 | # Sample workflow for building and deploying a Jekyll site to GitHub Pages 7 | name: Deploy BuiltWith to Pages 8 | 9 | on: 10 | # Runs on pushes targeting the default branch 11 | push: 12 | branches: ["master"] 13 | 14 | # Allows you to run this workflow manually from the Actions tab 15 | workflow_dispatch: 16 | 17 | # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages 18 | permissions: 19 | contents: read 20 | pages: write 21 | id-token: write 22 | 23 | # Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. 24 | # However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. 25 | concurrency: 26 | group: "pages" 27 | cancel-in-progress: false 28 | 29 | jobs: 30 | # Build job 31 | build: 32 | runs-on: ubuntu-latest 33 | steps: 34 | - name: Checkout 35 | uses: actions/checkout@v4 36 | 37 | - name: "Setup PHP" 38 | uses: shivammathur/setup-php@v2 39 | with: 40 | php-version: 8.4 41 | 42 | - name: "Update FanArt" 43 | run: | 44 | php updateData.php 45 | 46 | - name: Setup Ruby 47 | # https://github.com/ruby/setup-ruby/releases/tag/v1.207.0 48 | uses: ruby/setup-ruby@4a9ddd6f338a97768b8006bf671dfbad383215f4 49 | with: 50 | ruby-version: '3.1' # Not needed with a .ruby-version file 51 | bundler-cache: true # runs 'bundle install' and caches installed gems automatically 52 | cache-version: 0 # Increment this number if you need to re-download cached gems 53 | 54 | - name: Setup Pages 55 | id: pages 56 | uses: actions/configure-pages@v5 57 | 58 | - name: Build with Jekyll 59 | # Outputs to the './_site' directory by default 60 | run: bundle exec jekyll build --baseurl "${{ steps.pages.outputs.base_path }}" 61 | env: 62 | JEKYLL_ENV: production 63 | 64 | - name: Upload artifact 65 | # Automatically uploads an artifact from the './_site' directory by default 66 | uses: actions/upload-pages-artifact@v3 67 | 68 | # Deployment job 69 | deploy: 70 | environment: 71 | name: github-pages 72 | url: ${{ steps.deployment.outputs.page_url }} 73 | runs-on: ubuntu-latest 74 | needs: build 75 | steps: 76 | - name: Deploy to GitHub Pages 77 | id: deployment 78 | uses: actions/deploy-pages@v4 79 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _site 2 | Gemfile.lock 3 | -------------------------------------------------------------------------------- /.ruby-version: -------------------------------------------------------------------------------- 1 | 3.2.2 2 | -------------------------------------------------------------------------------- /404.md: -------------------------------------------------------------------------------- 1 | --- 2 | layout: default 3 | title: 404 - Page not found 4 | permalink: /404.html 5 | --- 6 | 7 | ## 404 8 | 9 | Ooops! Something went wrong. 10 | 11 |
12 | Back To Home 13 |
14 | 15 | <3 Phalcon Team -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | 3 | gem 'jekyll', '~>4.3.4' 4 | 5 | group :jekyll_plugins do 6 | gem 'jekyll-paginate' 7 | gem 'kramdown-parser-gfm' 8 | gem 'jekyll-sitemap' 9 | gem 'jekyll-feed' 10 | gem 'algolia' 11 | end 12 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Barry Clark 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy of 6 | this software and associated documentation files (the "Software"), to deal in 7 | the Software without restriction, including without limitation the rights to 8 | use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of 9 | the Software, and to permit persons to whom the Software is furnished to do so, 10 | subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS 17 | FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR 18 | COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER 19 | IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 20 | CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Built with Phalcon 2 | 3 | Gallery of applications, demos and projects built with Phalcon 4 | 5 | https://builtwith.phalcon.io 6 | 7 | ## Disclaimer 8 | This 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. 9 | 10 | ## Adding your project 11 | If you are familiar with Jekyll, then adding a site will be very easy! 12 | 13 | 1. 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`. 14 | 15 | 2. Fork this repository. 16 | 17 | 3. Add images: 18 | * Create a folder under `/assets/projects` using your slug (i.e. `/assets/projects/blog.slug.ld`) 19 | * 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. 20 | * Add as many images as you like in that folder (i.e. `frontend.png`, `campaign.png`) 21 | 22 | 4. Add your page: 23 | * 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`) 24 | 25 | 5. 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 26 | 27 | ```yaml 28 | --- 29 | layout: post // Do not change this 30 | title: 'The Slug Sample site' // Add a small title 31 | stub: 'blog.slug.ld' // The unique slug 32 | tags: // One tag per line prefixed by `-` 33 | - production 34 | - productivity 35 | - forum 36 | - mysql 37 | - github 38 | meta: 39 | image: 'thumb.png' // The main image for the entry 40 | author: 41 | name: 'Nikolaos Dimopoulos' // Your name (can leave blank) 42 | avatar: '' // Github avatar or other 43 | github: 'https://github.com/niden' // Github profile 44 | bitbucket: '' // Bitbucket profile 45 | gitlab: '' // Gitlab profile 46 | site: 47 | tags: // One tag per line prefixed by `-` (same as above) 48 | - production 49 | - productivity 50 | - forum 51 | - mysql 52 | - github 53 | link: 'https://blog.slug.ld' // Website URL 54 | social: 55 | github: 'https://github.com/niden/slug.ld' // If the source code is available 56 | facebook: '' // Facebook page/group for the site 57 | twitter: '' // Twitter account for the site 58 | discord: '' // Discord channel for the site 59 | images: // If you don't have any images leave the below empty 60 | - name: 'hmscreen1.png' // Name of first image 61 | text: 'Event Log/Dashboard' // Description of first image 62 | - name: 'hmscreen2.png' // Name of second image 63 | text: 'Campaign Pre-Send Screen' // Description of second image 64 | --- 65 | ``` 66 | 67 | 6. Add the summary/description for your site. You will notice that there is a `` 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. 68 | 69 | 7. Issue a pull request 70 | 71 | ## Sponsors 72 | 73 | Become 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)] 74 | 75 | 76 |