{% extends 'base.html.twig' %}
{% block title %}
{% set metaTitle = 'SANRAL eSDD - Sitemap' %}
{{ metaTitle }}
{% endblock %}
{% block meta_decription %}
{% set metaTitle = 'SANRAL eSDD - Sitemap' %}
{% set metaDescription = 'SANRAL eSDD - Sitemap' %}
<meta name="twitter:card" content="summary" />
<meta name="twitter:site" content="Sanral" />
<meta name="twitter:title" content="{{ metaTitle }}" />
<meta name="twitter:description" content="{{ metaDescription }}" />
{# <meta name="twitter:image" content="https://hugenouttunnel.nerdw.com/images/home/{{ home_data.ogImage }}" />#}
<meta name="twitter:url" content="{{ app.request.uri }}" />
{# <meta name="og:image" content="https://hugenouttunnel.nerdw.com/images/home/{{ home_data.ogImage }}" />#}
<meta name="og:title" content="{{ metaTitle }}" />
<meta name="og:description" content="{{ metaDescription }}" />
<meta name="og:url" content="{{ app.request.uri }}" />
<meta name="description" content="{{ metaDescription }}">
{% endblock %}
{% block stylesheets %}
{{ parent() }}
{% endblock %}
{% block layout %}
<div id="content-wrapper" class="container-fluid">
<div class="row no-gutters py-4">
<div class="col-md-9 px-3">
<div class="row">
<div class="col-12 pb-3">
<h1 class="display-4">
SITEMAP
</h1>
<br><br>
<div class="row">
<div class="col-12 col-md-6">
<h2 class="wsp-pages-title">Pages</h2>
<ul class="wsp-pages-list">
<li class="page_item page-item-397">
<a href="{{ path('resources_page') }}">
Do You Need Resources?
</a>
</li>
<li class="page_item page-item-362">
<a href="{{ path('content_page',{'title':'how-to-tender','id':1}) }}">
How to tender
</a>
</li>
<li class="page_item page-item-360">
<a href="{{ path('content_page',{'title':'privacy-policy','id':3}) }}">
Privacy Policy
</a>
</li>
<li class="page_item page-item-707">
<a href="{{ path('publications_page') }}">
Publications
</a>
</li>
<li class="page_item page-item-683">
<a href="{{ path('resource_partner_page') }}">
Resource Providers
</a>
</li>
<li class="page_item page-item-418 current_page_item">
<a href="{{ path('site_map_page') }}" aria-current="page">
Sitemap
</a>
</li>
<li class="page_item page-item-677">
<a href="{{ path('suggestion_box_page') }}">
Suggestion Box
</a>
</li>
<li class="page_item page-item-395">
<a href="{{ path('supplier_development_page') }}">
Supplier Development Desk
</a>
</li>
<li class="page_item page-item-354">
<a href="{{ path('faq_page') }}">
Tender & General FAQ’s
</a>
</li>
<li class="page_item page-item-357">
<a href="{{ path('content_page',{'title':'terms-and-conditions','id':2}) }}">
Terms & Conditions
</a>
</li>
<li class="page_item page-item-739">
<a href="{{ path('blog_page') }}">
Transformation Blog
</a>
</li>
<li class="page_item page-item-700">
<a href="{{ path('events_page') }}">
Transformation events
</a>
</li>
</ul>
</div>
<div class="col-12 col-md-6">
<h2 class="wsp-pages-title">Tenders</h2>
<ul class="wsp-pages-list">
{% for tender in tenders %}
<li class="page_item page-item-700">
<a href="{{ path('tenders_page',{'id': tender.id}) }}">
{{ tender.projectNumber }}
</a>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</div>
<div class="col-md-3">
{{ render(controller(
'App\\Controller\\CarouselController::getCarousel',
{
'page': 'content'
}
)) }}
</div>
</div>
</div>
{% endblock %}