mirror of
https://github.com/qdrant/landing_page.git
synced 2026-09-27 15:08:30 +02:00
* remover open source title, added docker icon on hero banner * buttons, fixes for mobile view * code widget fix * removed copying of text * changed size and positioning of the docker icon, added a link to dockerhub, some styles for mobiles * hid an installation section and an imapge on hero-banner for small mobile devices * exchanged images * fixed svg images * tutorial button => demos button, svg optimisation * removed background * new colors, separated file for the header * cleaned some redunant styles for the header * more changes according to the new design * fixed buttons animation, fixed the header on all pages for desktop * mobile view for the header and the top banner * changed the features section according to new design * moved styles for the features section to the separated file, some fixes for mobile view * reorganised lines in features-section.scss * changes slides on the main page - desctop view * added a file * autoscroll, some fixes * added an autoplay and a pause on mouseenter to the carousel on the home page * more styles * styles for articles section and subscribtion section * styles for footer * styles * footer background * fixes * more fixes * fixes for mobile devices - small sizes * fixes for mobile devices - medium sizes * update images * some fixes for mobiles, changed stack section * changed the second header (aka section title) according to new design * WIP: added some webpack configuration for updating a way of vendors scripts usage, added new carousel * replaced old slider to splidejs * fix for the slider * articles list page * article - single page * refactored main.scss, removed unused code from it and moved sections styles to separated files * renamed and added some files, added fixes to breadcrumbs * small changes in styles and layouts * vertical sizes * changes of styles and structure in articles and blog related files * added mobile styles for articles and related pages, added sass function for converting px to rem * temp picture * changes in page title * changed colors on old pages to the new design schema * fixes * deleted a file qdrant.css, moved styles to main.scss * installed qdrant-page-search, for now without an actual api url * added an actual api url * WIP replacing owl carousel with splide on the surveys page * updated page search, changed a way it's used * fixes for footer * changed common auto-container width, article font-size, made some fixes * docs auto-sync * narrow articles * re-imported blog styles, because they are used in other places * updated page-search * optimized css loading * replaced some images with webp format * undo main img, changes in image usage * fixes * fixed slider cursor, logos in the stack section, cards on solutions page, prices page * changed font-size of a form title on the subscription page * optimization * wip: added bash script for article preview images processing * bash script for article preview images processing * updated images for articles * two article card in the row, without buttons (#85) * fixes for old pages * fixes for benchmarks pages * added some info to the readme * upd case studies * changed form placeholder color and margin between buttons in the header * short solution texts + link to benchmarks on main * pricing page fixes * short text in slider * article cards borders, slider height, contact us * blockquote * move external articles to the landing * more narrow buttons in the header, no buttons on the solutions page * demo page fixes, removed target blank from the benchmarks link on the main page * slower speed of the carousel on the main page * content changes + seach upd * changed title, readme * added translate3d(0, 0, 0) to buttons for safari animations * fixing buttons in safari (maybe) * fixing buttons in safari (maybe) * fixing buttons in safari * fixes for mobiles * fixes * docs auto-sync * neural -> vector Co-authored-by: Andrey Vasnetsov <andrey@vasnetsov.com> Co-authored-by: qdrant <qdrant@users.noreply.github.com>
166 lines
6.9 KiB
HTML
166 lines
6.9 KiB
HTML
<!-- Main Footer -->
|
|
<footer class="main-footer">
|
|
<div class="auto-container">
|
|
<!--Widgets Section-->
|
|
<div class="widgets-section">
|
|
<div class="row clearfix">
|
|
|
|
<!-- Footer Column -->
|
|
<div class="main-footer__column col-12">
|
|
|
|
{{ $currentPage := . }}
|
|
{{ range .Site.Menus.main }}
|
|
{{ if .Params.in_footer }}
|
|
<div class="main-footer__widget">
|
|
<div class="main-footer__title">
|
|
{{ if .URL }}
|
|
<h4><a class="main-footer__link" href="{{ .URL }}">{{ .Name }}</a></h4>
|
|
{{ else }}
|
|
<h4>{{ .Name }}</h4>
|
|
{{ end }}
|
|
</div>
|
|
|
|
{{ if .HasChildren }}
|
|
<ul class="main-footer__list">
|
|
{{ range .Children }}
|
|
<li><a href="{{ .URL }}" {{ if .Params.external }}target="_blank" {{ end }}>
|
|
{{ if .Pre }}
|
|
{{ .Pre }}
|
|
{{ else }}
|
|
<i class="fas fa-check-circle"></i>
|
|
{{ end }}
|
|
<span>{{ .Name }}</span>
|
|
</a></li>
|
|
{{ end }}
|
|
</ul>
|
|
{{ end }}
|
|
</div>
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
<div class="main-footer__widget news-widget">
|
|
<div class="main-footer__title">
|
|
<h4>Latest Publications</h4>
|
|
</div>
|
|
<!-- Footer Column -->
|
|
<div class="widget-content">
|
|
|
|
{{ with (.Site.GetPage "section" "articles") }}
|
|
{{ range $i, $e := first 3 .Pages }}
|
|
|
|
{{ $link := .Permalink }}
|
|
{{ if .Params.external_link }}
|
|
{{ $link = .Params.external_link }}
|
|
{{ end }}
|
|
|
|
|
|
<div class="post">
|
|
<div class="thumb"><a href="{{ $link }}"><img src="{{ .Params.small_preview_image }}"
|
|
alt=""></a>
|
|
</div>
|
|
<h4><a href="{{ $link }}">{{ .Params.short_description }}</a></h4>
|
|
</div>
|
|
|
|
|
|
{{ end }}
|
|
{{ end }}
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Footer Column -->
|
|
<!-- <div class="footer-column col-lg-5 col-md-6 col-sm-12">-->
|
|
<!-- </div>-->
|
|
|
|
</div>
|
|
</div>
|
|
|
|
<ul class="social-box">
|
|
<li><a href="{{ .Site.Params.github }}" target="_blank"><i class="fab fa-github"></i></a></li>
|
|
<li><a href="{{ .Site.Params.linkedin }}" target="_blank"><i class="fab fa-linkedin"></i></a></li>
|
|
<li><a href="{{ .Site.Params.twitter }}" target="_blank"><i class="fab fa-twitter"></i></a></li>
|
|
<li><a href="{{ .Site.Params.discord }}" target="_blank"><i class="fab fa-discord"></i></a></li>
|
|
<li><a href="{{ .Site.Params.facebook }}" target="_blank"><i class="fab fa-facebook"></i></a></li>
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<!-- Footer Bottom -->
|
|
<div class="footer-bottom">
|
|
<div class="auto-container">
|
|
<div class="row clearfix">
|
|
|
|
<!-- Copyright Column -->
|
|
<div class="copyright-column col-lg-6 col-md-12 col-sm-12">
|
|
<div class="copyright">© {{ now.Format "2006" }} Qdrant. All Rights Reserved</div>
|
|
</div>
|
|
|
|
<!-- Language Column -->
|
|
<div class="language-column col-lg-6 col-md-12 col-sm-12">
|
|
<!--Language-->
|
|
<div class="language dropdown"><a class="btn btn-default dropdown-toggle" id="dropdownMenu2"
|
|
data-toggle="dropdown" aria-haspopup="true" aria-expanded="true"
|
|
href="#">Language:
|
|
English <span class="icon fa fa-angle-down"></span></a>
|
|
<ul class="dropdown-menu style-one" aria-labelledby="dropdownMenu2">
|
|
<li><a href="#">English</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
<!-- End Main Footer -->
|
|
|
|
</div>
|
|
<!--End pagewrapper-->
|
|
|
|
<!--Scroll to top-->
|
|
<div class="scroll-to-top scroll-to-target" data-target="html"><span class="fa fa-arrow-circle-up"></span></div>
|
|
|
|
<!-- Modal -->
|
|
<div class="modal fade" id="modal" tabindex="-1" role="dialog" aria-labelledby="contact form" aria-hidden="true">
|
|
<div class="modal-dialog" role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="exampleModalLabel">Thanks for using Qdrant!</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
<!-- Newsletter Form -->
|
|
<p>Subscribe to our e-mail newsletter if you want to be updated on new features and news regarding
|
|
Qdrant.</p>
|
|
<p>Like what we are doing? Consider giving us a ⭐ <a href="{{ .Site.Params.github }}">on Github</a>.</p>
|
|
<div class="newsletter-form">
|
|
<form action="{{ .Site.Params.mailchimp_subscribe }}" method="post" id="mc-embedded-subscribe-form"
|
|
name="mc-embedded-subscribe-form" class="validate" target="_blank" novalidate>
|
|
<div class="form-group">
|
|
<div style="position: absolute; left: -5000px;" aria-hidden="true">
|
|
<input type="text" name="{{ .Site.Params.mailchimp_subscribe_id }}" tabindex="-1"
|
|
value="">
|
|
</div>
|
|
<input type="email" name="EMAIL" value="" placeholder="Enter Your Email" required="">
|
|
<button type="submit" class="theme-btn btn-style-three"><span class="txt">Subscribe</span>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- End of Modal -->
|
|
|
|
|
|
{{ partial "js" .}}
|
|
|
|
</body>
|
|
</html> |