templates/default/index.html.twig line 1

Open in your IDE?
  1. {% extends 'base.html.twig' %}
  2. {% block title %}Home{% endblock %}
  3. {% block body %}
  4.     <section class="background-colored" style="background-image:url('{{ asset('images/homepage-new.jpg') }}');">
  5.         <div id="particles-dots" class="particles">
  6.             <canvas class="particles-js-canvas-el" width="2812" height="900"
  7.                     style="width: 100%; height: 100%;"></canvas>
  8.         </div>
  9.         <div class="container">
  10.             <div class="text-dark p-10" style="background-color: rgba(255,255,255,0.90);">
  11.                 <h1>The Easy API</h1>
  12.                 <p class="h3">Since 2010 we've developed a single API that connects and translates many APIs together
  13.                     into one interface. You get access to worldwide country information, page rankings, safe browsing
  14.                     URLs, U.S. zip codes, and so much more!</p>
  15.             </div>
  16.         </div>
  17.     </section>
  18.     <section class="background-secondary text-center p-t-30 p-b-30">
  19.         <div class="container">
  20.             <div class="row">
  21.                 <div class="col-lg-12"><h2 class="text-light">View the documentation</h2></div>
  22.                 <div class="col-lg-12">
  23.                     <a href="{{ path('docs_page', {'category': 'getting-started', 'section':'introduction'}) }}"
  24.                        class="btn btn-rounded btn-reveal btn-dark">
  25.                         <span>Documentation</span>
  26.                         <i class="icon-chevron-right"></i>
  27.                     </a>
  28.                 </div>
  29.             </div>
  30.         </div>
  31.     </section>
  32.     <!-- Services -->
  33.     <section class="p-b-20">
  34.         <div class="container">
  35.             <div class="row">
  36.                 <div class="col-lg-12 p-b-20">
  37.                     <h2>Why The Easy API?</h2>
  38.                 </div>
  39.             </div>
  40.             <div class="row">
  41.                 <!-- features box -->
  42.                 <div class="col-lg-4">
  43.                     <img src="{{ asset('images/trustedScaledSlim.jpg') }}" class="img-fluid m-b-20">
  44.                     <h4>Trusted</h4>
  45.                     <p>We've been in business since 2010 and have a long history of always supporting our users. We work
  46.                         with you to build an API that gives your growing applications everything it needs. Reach out
  47.                         today to see what we can do to help!</p>
  48.                 </div>
  49.                 <!-- end: features box -->
  50.                 <!-- features box -->
  51.                 <div class="col-lg-4">
  52.                     <img src="{{ asset('images/speedScaledSlim.jpg') }}" class="img-fluid m-b-20">
  53.                     <h4>Fast Responses</h4>
  54.                     <p>Our API returns responses in less than a second. That's time that your application can get a
  55.                         response and keep processing.</p>
  56.                 </div>
  57.                 <!-- end: features box -->
  58.                 <!-- features box -->
  59.                 <div class="col-lg-4">
  60.                     <img src="{{ asset('images/timeScaledSlim.jpg') }}" class="img-fluid m-b-20">
  61.                     <h4>Saves Time</h4>
  62.                     <p>We help you save time and energy implementing multiple APIs. You can get back to building your
  63.                         application after you connect with our single one. We track all the requests made to enable you
  64.                         to debug all API calls, making implementation even easier.</p>
  65.                 </div>
  66.                 <!-- end: features box -->
  67.             </div>
  68.             <!-- end features box -->
  69.         </div>
  70.     </section>
  71.     <!-- end: Services -->
  72. {% endblock %}