82 lines
3.5 KiB
HTML
82 lines
3.5 KiB
HTML
<!doctype html>
|
||
<html lang="ru">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>Корзина МОНТ</title>
|
||
<link rel="icon" type="image/png" href="/favicon.png" />
|
||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||
<link href="https://fonts.googleapis.com/css2?family=Caveat:wght@600;700&family=Manrope:wght@400;600;700;800&family=Space+Grotesk:wght@500;700&display=swap" rel="stylesheet">
|
||
<link rel="stylesheet" href="{{ url_for('static', filename='css/index.css') }}" />
|
||
</head>
|
||
<body>
|
||
<main class="wrap">
|
||
<section class="brand-strip">
|
||
<div class="brand-logo">
|
||
<img src="/assets/mont-logo" alt="MONT logo" />
|
||
</div>
|
||
</section>
|
||
|
||
<section class="hero">
|
||
<div class="hero-layout">
|
||
<div>
|
||
<h1>Вендоры в корзине МОНТ</h1>
|
||
<p>Актуальная матрица вендоров, продуктов и категорий. Выбирайте вендоров или категории, чтобы видеть релевантные продуктовые линейки в Инфраструктуре и ИБ.</p>
|
||
<div class="mode-switch">
|
||
<button id="modeInfra" class="mode-btn active" type="button">Инфраструктура</button>
|
||
<button id="modeIb" class="mode-btn" type="button">ИБ</button>
|
||
</div>
|
||
</div>
|
||
</div>
|
||
</section>
|
||
|
||
<section class="board">
|
||
<article class="card">
|
||
<h2>Вендоры</h2>
|
||
<input id="vendorSearch" class="search" placeholder="Поиск вендора..." />
|
||
<div id="vendorList" class="chip-grid"></div>
|
||
</article>
|
||
|
||
<article class="card">
|
||
<h2>Категории</h2>
|
||
<input id="categorySearch" class="search" placeholder="Поиск категории..." />
|
||
<div id="categoryList" class="chip-grid"></div>
|
||
</article>
|
||
</section>
|
||
|
||
<div class="footer-bar">
|
||
<div id="stats">Загрузка...</div>
|
||
<button class="action" id="clearBtn">Сбросить фильтры</button>
|
||
</div>
|
||
|
||
<section class="result">
|
||
<div class="result-head">
|
||
<h3>Вендоры и продукты (после фильтрации)</h3>
|
||
</div>
|
||
<div id="resultRows" class="rows"></div>
|
||
</section>
|
||
<div class="credit">
|
||
<div class="name">Made by Galyaviev</div>
|
||
<a href="mailto:RGalyaviev@mont.com">RGalyaviev@mont.com</a>
|
||
</div>
|
||
</main>
|
||
|
||
<!-- Yandex.Metrika counter -->
|
||
<script type="text/javascript">
|
||
(function(m,e,t,r,i,k,a){
|
||
m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
|
||
m[i].l=1*new Date();
|
||
for (var j = 0; j < document.scripts.length; j++) {if (document.scripts[j].src === r) { return; }}
|
||
k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)
|
||
})(window, document,'script','https://mc.yandex.ru/metrika/tag.js?id=108577107', 'ym');
|
||
|
||
ym(108577107, 'init', {ssr:true, webvisor:true, clickmap:true, ecommerce:"dataLayer", referrer: document.referrer, url: location.href, accurateTrackBounce:true, trackLinks:true});
|
||
</script>
|
||
<noscript><div><img src="https://mc.yandex.ru/watch/108577107" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
|
||
<!-- /Yandex.Metrika counter -->
|
||
|
||
<script src="{{ url_for('static', filename='js/index.js') }}"></script>
|
||
</body>
|
||
</html>
|