templates/servers/dedicated.html.twig line 98
{% extends 'core/__skeleton.html.twig' %}
{% block main %}
<section id="hostingHeader" class="hosting__heading hosting__heading--full dedicated">
<div class="wrap">
<h1>Dedicated Servers in Wales</h1>
<h2>Powerful & Secure<br><span>Dedicated</span> Servers</h2>
<p>
Deploy your Dedicated Server within 24 hours.<br>
Grow your business with security and confidence.
</p>
</div>
</section>
<section id="dedicatedPricing" class="dedicated__pricing">
<div class="wrap">
<div class="dedicated__purchase">
<div class="dedicated__purchase__options">
<h3>Choose Your Server</h3>
<div class="dedicated__slider">
{% for row in featured %}
{% if row.isFeatured == true %}
<div class="dedicated__slide{% if loop.index == 1 %} active{% endif %}" data-option="dedicated{{ loop.index }}" data-name="{{ row.name }}" data-price="{{ row.sellPrice }}">
<div class="dedicated__purchase__row">
<div class="dedicated__purchase__icon">
{% if row.processorType.name == 'Intel' %}
<img src="{{ asset('assets/img/dedicated/intel-xeon.svg') }}" alt="Intel Xeon Logo" width="50px">
{% elseif row.processorType.name == 'AMD' and 'Ryzen' in row.name %}
<img src="{{ asset('assets/img/dedicated/amd-ryzen.png') }}" alt="AMD Ryzen Logo" width="50px">
{% else %}
<img src="{{ asset('assets/img/dedicated/amd-epyc.png') }}" alt="AMD EPYC Logo" width="50px">
{% endif %}
</div>
<div class="dedicated__purchase__content">
<p><small>{{ row.processorType.name}} Processor</small></p>
<h4>{{ row.name }}</h4>
</div>
</div>
<div class="dedicated__purchase__row">
<hr>
</div>
<div class="dedicated__purchase__row">
<div class="dedicated__purchase__icon">
<i class="fab fa-linux fa-3x"></i>
</div>
<div class="dedicated__purchase__content">
<strong>Latest OS Available</strong><br>
<small>CentOS, AlmaLinux, RockyLinux, Debian & Ubuntu</small>
</div>
</div>
<div class="dedicated__purchase__row">
<div class="dedicated__purchase__icon">
<i class="fas fa-microchip fa-3x"></i>
</div>
<div class="dedicated__purchase__content">
<strong>{{ row.processorType.name ~ " " ~ row.processor }}</strong><br>
<small>{{ row.cores }} cores x {{ row.speed }}GHz</small>
</div>
</div>
<div class="dedicated__purchase__row">
<div class="dedicated__purchase__icon">
<i class="fas fa-memory fa-3x"></i>
</div>
<div class="dedicated__purchase__content">
<strong>{{ row.memory }}GB RAM</strong><br>
<small>{{ row.ram }}</small>
</div>
</div>
<div class="dedicated__purchase__row">
<div class="dedicated__purchase__icon">
<i class="fas fa-hard-drive fa-3x"></i>
</div>
<div class="dedicated__purchase__content">
{% if row.storage >= 1000 %}
<strong>{{ row.storage / 1000 }}TB {{ row.hddType.name }}</strong><br>
<small>(2x {{ row.storage / 1000 }}TB) {{ row.raid }}</small>
{% else %}
<strong>{{ row.storage }}GB {{ row.hddType.name }}</strong><br>
<small>(2x {{ row.storage }}GB) {{ row.raid }}</small>
{% endif %}
</div>
</div>
</div>
{% endif %}
{% endfor %}
</div>
<div class="dedicated__slider__actions">
<button type="button" id="slideLeft" class="button button--slide">
<i class="fas fa-chevron-left"></i>
</button>
<button type="button" id="slideRight" class="button button--slide">
<i class="fas fa-chevron-right"></i>
</button>
</div>
</div>
<div class="dedicated__purchase__calculations">
<p class="dedicated__purchase__calculations__price">
<span>£{{ featured[0].sellPrice }}</span><small>/month</small>
</p>
<p>
<button type="button" class="button button--green button--full button--xlarge" data-modal="orderModal" data-type="dedicated-hosting" data-value="{{ featured[0].name }}">
Order Now
</button>
</p>
<hr>
<p>
<strong>Includes:</strong> Our Professional Server Management Service. (Plus, a FREE .uk domain
for lifetime of the server)
</p>
<p>
Ready within 24 hours (usually same day)
</p>
</div>
</div>
</div>
</section>
<section class="dedicated-info">
<div class="wrap">
<div class="dedicated-info__content">
<h2>Dedicated Servers</h2>
<h3>What Our Dedicated Servers Come With</h3>
<p>
Purchase your brand new Dedicated Server for your Welsh Business today with a Local Welsh Hosting
Company, based in Wales. Why buy with the big guys when you can buy your dedicated server with a
local Welsh business?
</p>
</div>
<div class="dedicated-info__box-wrap">
<div class="dedicated-info__box">
<i class="fas fa-microchip fa-3x"></i>
<h4>Intel/AMD Processors</h4>
<p>
We use the very best Intel Xeon and AMD Epyc Processors to ensure your server has the power it
needs to meet the demand of your business.
</p>
</div>
<div class="dedicated-info__box">
<i class="fas fa-memory fa-3x"></i>
<h4>Up to 256GB RAM</h4>
<p>
Starting at 16GB rising to 256GB of memory, our Dedicated Servers are scalable to your business
needs. Just pick what you need to make it work.
</p>
</div>
<div class="dedicated-info__box">
<i class="fas fa-hard-drive fa-3x"></i>
<h4>NVMe, SSD or HDD Hard Drives</h4>
<p>
Choose from 3 different types of Hard Drives to store your files on. We can provide standard HDD
RAID drives right up to NVMe RAID Drives, up to 4TB in size.
</p>
</div>
<div class="dedicated-info__box">
<i class="fas fa-ethernet fa-3x"></i>
<h4>1Gbps Network Speeds</h4>
<p>
1 GBit/s applies to public facing connections. Some private networks will be able to connect
via a 10Gbit/s bandwidth.
</p>
</div>
<div class="dedicated-info__box">
<box-icon name="terminal" type="solid" size="lg"></box-icon>
<h4>Full Root Access</h4>
<p>
Get complete admin control with root-level access and fully manage your server’s configuration in
any way you need to for your project.
</p>
</div>
<div class="dedicated-info__box">
<i class="fab fa-linux fa-3x"></i>
<h4>Latest Operating Systems</h4>
<p>
Our Dedicated Servers have the latest versions of AlmaLinux, CentOS, Rocky Linux, Ubuntu and
Debian for you to choose from.
</p>
</div>
</div>
</div>
</section>
{% endblock %}