Commit 34a433f6 authored by root's avatar root

from real site

parents 52b252a0 6e4beaa0
# Deny all requests from Apache 2.4+.
<IfModule mod_authz_core.c>
Require all denied
</IfModule>
# Deny all requests from Apache 2.0-2.2.
<IfModule !mod_authz_core.c>
Deny from all
</IfModule>
# Turn off all options we don't need.
Options -Indexes -ExecCGI -Includes -MultiViews
# Set the catch-all handler to prevent scripts from being executed.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2006_006
<Files *>
# Override the handler again if we're run later in the evaluation list.
SetHandler Drupal_Security_Do_Not_Remove_See_SA_2013_003
</Files>
# If we know how to do it safely, disable the PHP engine entirely.
<IfModule mod_php5.c>
php_flag engine off
</IfModule>
<IfModule mod_php7.c>
php_flag engine off
</IfModule>
\ No newline at end of file
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* core/themes/classy/templates/views/views-view-list.html.twig */
class __TwigTemplate_4ac5716f0f0b833f690d0d11c1cd99dabfdbeb7a29c39c845ed0ad62159e560d extends \Twig\Template
{
public function __construct(Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = [
];
$this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension');
$tags = ["if" => 19, "for" => 28];
$filters = ["escape" => 20];
$functions = [];
try {
$this->sandbox->checkSecurity(
['if', 'for'],
['escape'],
[]
);
} catch (SecurityError $e) {
$e->setSourceContext($this->getSourceContext());
if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
$e->setTemplateLine($tags[$e->getTagName()]);
} elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
$e->setTemplateLine($filters[$e->getFilterName()]);
} elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
$e->setTemplateLine($functions[$e->getFunctionName()]);
}
throw $e;
}
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 19
if (($context["attributes"] ?? null)) {
// line 20
echo "<div";
echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["attributes"] ?? null)), "html", null, true);
echo ">
";
}
// line 22
echo " ";
if (($context["title"] ?? null)) {
// line 23
echo " <h3>";
echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed(($context["title"] ?? null)), "html", null, true);
echo "</h3>
";
}
// line 25
echo "
<";
// line 26
echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["list"] ?? null), "type", [])), "html", null, true);
echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["list"] ?? null), "attributes", [])), "html", null, true);
echo ">
";
// line 28
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["rows"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["row"]) {
// line 29
echo " <li";
echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["row"], "attributes", [])), "html", null, true);
echo ">";
// line 30
echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute($context["row"], "content", [])), "html", null, true);
// line 31
echo "</li>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['row'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 33
echo "
</";
// line 34
echo $this->env->getExtension('Drupal\Core\Template\TwigExtension')->escapeFilter($this->env, $this->sandbox->ensureToStringAllowed($this->getAttribute(($context["list"] ?? null), "type", [])), "html", null, true);
echo ">
";
// line 36
if (($context["attributes"] ?? null)) {
// line 37
echo "</div>
";
}
}
public function getTemplateName()
{
return "core/themes/classy/templates/views/views-view-list.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 108 => 37, 106 => 36, 101 => 34, 98 => 33, 91 => 31, 89 => 30, 85 => 29, 81 => 28, 75 => 26, 72 => 25, 66 => 23, 63 => 22, 57 => 20, 55 => 19,);
}
/** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
public function getSource()
{
@trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
return $this->getSourceContext()->getCode();
}
public function getSourceContext()
{
return new Source("{#
/**
* @file
* Theme override for a view template to display a list of rows.
*
* Available variables:
* - attributes: HTML attributes for the container.
* - rows: A list of rows for this list.
* - attributes: The row's HTML attributes.
* - content: The row's contents.
* - title: The title of this group of rows. May be empty.
* - list: @todo.
* - type: Starting tag will be either a ul or ol.
* - attributes: HTML attributes for the list element.
*
* @see template_preprocess_views_view_list()
*/
#}
{% if attributes -%}
<div{{ attributes }}>
{% endif %}
{% if title %}
<h3>{{ title }}</h3>
{% endif %}
<{{ list.type }}{{ list.attributes }}>
{% for row in rows %}
<li{{ row.attributes }}>
{{- row.content -}}
</li>
{% endfor %}
</{{ list.type }}>
{% if attributes -%}
</div>
{% endif %}
", "core/themes/classy/templates/views/views-view-list.html.twig", "/var/www/ptd.dev.invigroup.com/core/themes/classy/templates/views/views-view-list.html.twig");
}
}
......@@ -767,10 +767,10 @@
include $app_root . '/' . $site_path . '/settings.local.php';
}
$databases['default']['default'] = array (
<<<<<<< HEAD
'database' => 'invi_ptd',
'username' => 'invi_dev',
'password' => 'Invi@123456789a@A',
'prefix' => '',
'host' => 'localhost',
'port' => '3306',
......
......@@ -314,10 +314,10 @@ border: 1.5px solid red;
text-shadow: -2px 0 0 #fff, 0 -2px 0 #fff, 2px 0 0 #fff, 0 2px 0 #fff, 2px -2px 0 #fff, -2px 2px 0 #fff, -2px -2px 0 #fff, 2px 2px 0 #fff, 3px 3px 4px rgba(0, 0, 0, 0.5);
}
header .link_content:hover {
background: #e94537;
background: #f09d51;
}
header .link_content {
background: #f09d51;
background: #e94537;
height: 57px;
color: white;
color: #fff !important;
......@@ -345,7 +345,7 @@ header .link_content a:hover {
border: 1px solid #e94337;
border-radius: 4px;
padding: 5px 20px;
background: #f09d5145;
background: #ff000026;
}
.pin_be {
......@@ -4795,8 +4795,8 @@ fieldset[disabled] .btn-default.focus {
.btn-primary:hover {
color: #fff;
border-color: #006889;
background-color: #0083ad;
/* border-color: #006889; */
background-color: #F6E8EA;
}
.btn-primary:active,
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment