templates/hosting/shared.html.twig line 1

  1. {% extends 'core/__skeleton.html.twig' %}
  2. {% block main %}
  3.     <section id="hostingHeader" class="hosting__heading">
  4.         <div class="wrap">
  5.             <h1>Cloud Web Hosting in Wales</h1>
  6.             <h2><span>Green</span>, Secure & Powerful Web Hosting</h2>
  7.             <div class="hosting__pricing--container">
  8.                 <label class="hosting__pricing__period">
  9.                     <input type="checkbox" id="period" name="period" role="switch">
  10.                     <span class="hosting__pricing__slider"></span>
  11.                 </label>
  12.                 <span class="hosting__pricing__label">
  13.                     <strong>Annual Billing</strong> (Save 10%)
  14.                 </span>
  15.             </div>
  16.         </div>
  17.     </section>
  18.     <section id="hostingPricing" class="hosting__pricing">
  19.         <div class="wrap">
  20.             <div id="hostingMonthly" class="hosting__pricing__columns">
  21.                 {% for row in products %}
  22.                     {% if row.period == 1 %}
  23.                         <div class="hosting__pricing__column">
  24.                             {% if row.popular %}
  25.                                 <div class="hosting__pricing__column--popular">
  26.                                     Most Popular
  27.                                 </div>
  28.                             {% endif %}
  29.                             <h4>{{ row.name }}</h4>
  30.                             <div class="hosting__pricing__column--price">
  31.                                 &pound;{{ row.registerPrice|number_format(2) }}<small>/month</small>
  32.                             </div>
  33.                             {{ row.shortDescription|raw }}
  34.                             {{ row.features|raw }}
  35.                             <button type="button" class="button button--green button--full" data-modal="orderModal" data-type="linux-hosting-monthly" data-value="{{ row.name }}">
  36.                                 Purchase Plan
  37.                             </button>
  38.                         </div>
  39.                     {% endif %}
  40.                 {% endfor %}
  41.             </div>
  42.             <div id="hostingAnnually" class="hosting__pricing__columns hidden">
  43.                 {% for row in products %}
  44.                     {% if row.period == 12 %}
  45.                         <div class="hosting__pricing__column">
  46.                             {% if row.popular %}
  47.                                 <div class="hosting__pricing__column--popular">
  48.                                     Most Popular
  49.                                 </div>
  50.                             {% endif %}
  51.                             <h4>{{ row.name }}</h4>
  52.                             <div class="hosting__pricing__column--price">
  53.                                 &pound;{{ row.registerPrice|number_format(2) }}<small>/year</small>
  54.                             </div>
  55.                             {{ row.shortDescription|raw }}
  56.                             {{ row.features|raw }}
  57.                             <button type="button" class="button button--green button--full" data-modal="orderModal" data-type="linux-hosting-yearly" data-value="{{ row.name }}">
  58.                                 Purchase Plan
  59.                             </button>
  60.                         </div>
  61.                     {% endif %}
  62.                 {% endfor %}
  63.             </div>
  64.         </div>
  65.     </section>
  66.     <section class="hosting__section hosting__grey">
  67.         <div class="wrap">
  68.             <div class="hosting__section__content">
  69.                 <h2>The Little Welsh Hosting Company</h2>
  70.                 <h3>4 Reasons To Choose Us</h3>
  71.                 <p>
  72.                     We may be a <strong>"Little"</strong> Welsh Hosting Company but our expertise and knowledge is far
  73.                     from <em><u>"small"</u></em>. We have constructed and put together the very best resources to
  74.                     provide you with the very <strong>BEST</strong> service.<br> Give us a try and use your local company.
  75.                 </p>
  76.             </div>
  77.             <div class="hosting__columns hosting__columns--4">
  78.                 <div class="hosting__column">
  79.                     <box-icon name="time-five" size="lg"></box-icon>
  80.                     <h4>100% Uptime</h4>
  81.                     <p>
  82.                         We are proud to boast that our systems have been up 100% of the time. We use robust, quality
  83.                         systems to ensure the best uptime.
  84.                     </p>
  85.                 </div>
  86.                 <div class="hosting__column">
  87.                     <box-icon name="support" size="lg"></box-icon>
  88.                     <h4>Excellent Support</h4>
  89.                     <p>
  90.                         Our technical support team is ready to help you as soon as we can. If you're stuck with an issue
  91.                         at 3am, drop us a message on our platform.
  92.                     </p>
  93.                 </div>
  94.                 <div class="hosting__column">
  95.                     <box-icon name="target-lock" size="lg"></box-icon>
  96.                     <h4>Great Security</h4>
  97.                     <p>
  98.                         We take security very seriously and our systems reflect that. We provide great protection from
  99.                         DDoS attacks and more.
  100.                     </p>
  101.                 </div>
  102.                 <div class="hosting__column">
  103.                     <box-icon name="map" size="lg"></box-icon>
  104.                     <h4>Welsh Company</h4>
  105.                     <p>
  106.                         Based in Ammanford, Carmarthenshire, you will be supporting a growing Welsh business that is
  107.                         looking to do more for its community.
  108.                     </p>
  109.                 </div>
  110.             </div>
  111.         </div>
  112.     </section>
  113.     <section class="hosting__section">
  114.         <div class="wrap">
  115.             <div class="hosting__section__content">
  116.                 <h2>Web Hosting</h2>
  117.                 <h3>Best Web Hosting Features For You</h3>
  118.                 <p>
  119.                     These features come standard in all of our shared hosting plans. We want to ensure that our Web
  120.                     Hosting packages match your expectations and more.
  121.                 </p>
  122.             </div>
  123.             <div class="hosting__columns hosting__columns--3">
  124.                 <div class="hosting__column hosting__column__side-icons">
  125.                     <div class="icons">
  126.                         <box-icon name="dashboard" type="solid" size="lg"></box-icon>
  127.                     </div>
  128.                     <div class="content">
  129.                         <h4>cPanel Control Panel</h4>
  130.                         <p>
  131.                             Enjoy the use of the world-renowned cPanel Control Panel to help manage your website, files,
  132.                             emails and a lot more.
  133.                         </p>
  134.                     </div>
  135.                 </div>
  136.                 <div class="hosting__column hosting__column__side-icons">
  137.                     <div class="icons">
  138.                         <box-icon name="user-pin" size="lg"></box-icon>
  139.                     </div>
  140.                     <div class="content">
  141.                         <h4>No AI Support Here!</h4>
  142.                         <p>
  143.                             Even though we think AI is great, there's nothing better than talking to a human-being
  144.                             about the issues you have.
  145.                         </p>
  146.                     </div>
  147.                 </div>
  148.                 <div class="hosting__column hosting__column__side-icons">
  149.                     <div class="icons">
  150.                         <box-icon name="mouse" size="lg"></box-icon>
  151.                     </div>
  152.                     <div class="content">
  153.                         <h4>1-Click Installer</h4>
  154.                         <p>
  155.                             Fancy installing a WordPress Blog, Drupal Website or another system easily by just the click
  156.                             of a button? Look no further.
  157.                         </p>
  158.                     </div>
  159.                 </div>
  160.                 <div class="hosting__column hosting__column__side-icons">
  161.                     <div class="icons">
  162.                         <box-icon name="time-five" size="lg"></box-icon>
  163.                     </div>
  164.                     <div class="content">
  165.                         <h4>100% Uptime</h4>
  166.                         <p>
  167.                             We are proud of this statistic! Currently, we can offer our clients 100% uptime on our
  168.                             servers meaning your website NEVER goes down.
  169.                         </p>
  170.                     </div>
  171.                 </div>
  172.                 <div class="hosting__column hosting__column__side-icons">
  173.                     <div class="icons">
  174.                         <box-icon name="hdd" size="lg"></box-icon>
  175.                     </div>
  176.                     <div class="content">
  177.                         <h4>Solid State Drives</h4>
  178.                         <p>
  179.                             You may have seen that a lot of our computers now use SSDs due to their speed and stability.
  180.                             Well we use them in our servers too!
  181.                         </p>
  182.                     </div>
  183.                 </div>
  184.                 <div class="hosting__column hosting__column__side-icons">
  185.                     <div class="icons">
  186.                         <box-icon name="support" size="lg"></box-icon>
  187.                     </div>
  188.                     <div class="content">
  189.                         <h4>Specialist Support</h4>
  190.                         <p>
  191.                             Sometimes things can go wrong on your website and or server. Well, our guys are on hand to
  192.                             help you get your website back up and running.
  193.                         </p>
  194.                     </div>
  195.                 </div>
  196.             </div>
  197.         </div>
  198.     </section>
  199.     <section class="hosting__section hosting__grey">
  200.         <div class="wrap">
  201.             <div class="hosting__section__content">
  202.                 <h2>Technical Features</h2>
  203.                 <h3>Let's Get Technical!</h3>
  204.                 <p>
  205.                     Let's get down to the nitty-gritty of what our shared hosting systems provide your website. Below
  206.                     is a list of what is available for you, when you purchase one of our Shared Hosting packages.
  207.                 </p>
  208.             </div>
  209.             <div class="hosting__columns hosting__columns--3">
  210.                 <div class="hosting__column hosting__column--left">
  211.                     <box-icon name="server" size="lg"></box-icon>
  212.                     <h4>Web Hosting Features</h4>
  213.                     <ul>
  214.                         <li><box-icon name="check"></box-icon> Flexible, Easy to Use Control Panel</li>
  215.                         <li><box-icon name="check"></box-icon> Unmetered Bandwidth</li>
  216.                         <li><box-icon name="check"></box-icon> Unmetered Sub Domains, FTP Accounts</li>
  217.                         <li><box-icon name="check"></box-icon> 100% Uptime</li>
  218.                         <li><box-icon name="check"></box-icon> 30-Day Money-Back Guarantee</li>
  219.                     </ul>
  220.                 </div>
  221.                 <div class="hosting__column hosting__column--left">
  222.                     <box-icon name="dashboard" type="solid" size="lg"></box-icon>
  223.                     <h4>cPanel Control Panel</h4>
  224.                     <ul>
  225.                         <li><box-icon name="check"></box-icon> Latest cPanel Web Hosting Control Panel</li>
  226.                         <li><box-icon name="check"></box-icon> Webalizer, Raw Log Manager with Error Logs</li>
  227.                         <li><box-icon name="check"></box-icon> Instant Shopping Carts, Blogs, Portals</li>
  228.                         <li><box-icon name="check"></box-icon> Password Protected Directories Error Pages</li>
  229.                         <li><box-icon name="check"></box-icon> Web Based File Manager, Hotlink Protection</li>
  230.                     </ul>
  231.                 </div>
  232.                 <div class="hosting__column hosting__column--left">
  233.                     <box-icon name="data" size="lg"></box-icon>
  234.                     <h4>Programming & Databases</h4>
  235.                     <ul>
  236.                         <li><box-icon name="check"></box-icon> MySQL Databases with phpMyAdmin Access</li>
  237.                         <li><box-icon name="check"></box-icon> Fast CGI, PHP 8, Ruby on Rails, Python</li>
  238.                         <li><box-icon name="check"></box-icon> ImageMagick Curl, CPAN, GD Library</li>
  239.                         <li><box-icon name="check"></box-icon> SSH Access and Cron Job Scheduling</li>
  240.                         <li><box-icon name="check"></box-icon> SSL Certification</li>
  241.                     </ul>
  242.                 </div>
  243.                 <div class="hosting__column hosting__column--left">
  244.                     <box-icon name="envelope" size="lg"></box-icon>
  245.                     <h4>Email Features</h4>
  246.                     <ul>
  247.                         <li><box-icon name="check"></box-icon> Unlimited POP3 Email Accounts with SMTP</li>
  248.                         <li><box-icon name="check"></box-icon> WebMail Access: Horde, RoundCube</li>
  249.                         <li><box-icon name="check"></box-icon> Receive your email to your phone via IMAP</li>
  250.                         <li><box-icon name="check"></box-icon> Prevent spam with SpamAssassin</li>
  251.                         <li><box-icon name="check"></box-icon> Unlimited Email Aliases, Autoresponders</li>
  252.                     </ul>
  253.                 </div>
  254.                 <div class="hosting__column hosting__column--left">
  255.                     <box-icon name="support" size="lg"></box-icon>
  256.                     <h4>Technical Support</h4>
  257.                     <ul>
  258.                         <li><box-icon name="check"></box-icon> Premium Support with Live Chat</li>
  259.                         <li><box-icon name="check"></box-icon> Automatic Weekly Off-Site Data Backups</li>
  260.                         <li><box-icon name="check"></box-icon> 24/7/365 Hosting Server Monitoring</li>
  261.                         <li><box-icon name="check"></box-icon> Online Support Portal</li>
  262.                     </ul>
  263.                 </div>
  264.                 <div class="hosting__column hosting__column--left">
  265.                     <box-icon name="desktop" size="lg"></box-icon>
  266.                     <h4>Application Hosting Plan</h4>
  267.                     <ul>
  268.                         <li><box-icon name="check"></box-icon> Free Website Transfer, Domain Transfer</li>
  269.                         <li><box-icon name="check"></box-icon> 52 Free scripts can be instantly installed</li>
  270.                         <li><box-icon name="check"></box-icon> Free SSL Certification website securely</li>
  271.                     </ul>
  272.                 </div>
  273.             </div>
  274.         </div>
  275.     </section>
  276.     <section class="hosting__section hosting__yellow">
  277.         <div class="wrap">
  278.             <div class="hosting__section__content">
  279.                 <h3>30 Day Money Back Guarantee</h3>
  280.                 <p>
  281.                     If you’re not entirely happy with your purchase then simply let us know within 30 days, and we’ll
  282.                     refund you in full, minus any domain name costs. (Domain names are non-refundable and are yours to
  283.                     keep even if things don’t work out.)
  284.                 </p>
  285.             </div>
  286.         </div>
  287.     </section>
  288. {% endblock %}