File: home_frameworks.twig

package info (click to toggle)
php-di 7.1.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,940 kB
  • sloc: php: 10,572; makefile: 42; xml: 17; sh: 10; pascal: 5
file content (36 lines) | stat: -rw-r--r-- 1,260 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
<div id="integrations" class="container framework-integrations">

    <h2><a href="#integrations">Integrations</a></h2>

    <p>
        PHP-DI integrates easily in your application or in frameworks.
    </p>

    <div class="row">

        {% for id, name in frameworks %}
            <div class="col-sm-3 col-md-2">
                <div class="thumbnail">
                    <a href="{{ baseUrl }}/doc/frameworks/{{ id }}.html" title="{{ name }} integration with PHP-DI">
                        <img class="framework-logo" src="{{ baseUrl }}/img/frameworks/{{ id }}.png" alt="{{ name }}">
                    </a>
                    <div class="caption">
                        <h4>
                            <a href="{{ baseUrl }}/doc/frameworks/{{ id }}.html" title="{{ name }} integration with PHP-DI">{{ name }}</a>
                        </h4>
                    </div>
                </div>
            </div>
        {% endfor %}

    </div>

    <p>
        No framework? It works too, have a look at this <a href="https://github.com/PHP-DI/demo" title="PHP-DI demo application">demo application</a>.
    </p>

    <p class="text-center">
        <a href="doc/#frameworks-integration" class="btn btn-default">Learn more</a>
    </p>

</div>