36 lines
1.2 KiB
HTML
36 lines
1.2 KiB
HTML
{% extends "_base.html" %} {% block content %}
|
|
<!-- Hero Section with Page Title -->
|
|
{% include 'components/hero.html' %}
|
|
|
|
<!-- Sections with Cards -->
|
|
{% for section in page.sections %} {% include 'components/section.html' %} {%
|
|
endfor %}
|
|
|
|
<!-- Call to Action -->
|
|
<div id="call-to-action" class="bg-blue-600 text-white py-12">
|
|
<div id="cta-container" class="container">
|
|
<h2>Ready to Get Started?</h2>
|
|
<p>
|
|
Contact us today to learn more about how we can help you.
|
|
</p>
|
|
<iframe id="contact-form" src="http://contact.allucanget.biz/embed/contact" width="600" height="600" frameborder="0" allowfullscreen></iframe>
|
|
</div>
|
|
</div>
|
|
<script src="js/contact.js"></script>
|
|
<!-- Matomo -->
|
|
<script>
|
|
var _paq = window._paq = window._paq || [];
|
|
/* tracker methods like "setCustomDimension" should be called before "trackPageView" */
|
|
_paq.push(['trackPageView']);
|
|
_paq.push(['enableLinkTracking']);
|
|
(function() {
|
|
var u="//s.allucanget.biz/";
|
|
_paq.push(['setTrackerUrl', u+'matomo.php']);
|
|
_paq.push(['setSiteId', '1']);
|
|
var d=document, g=d.createElement('script'), s=d.getElementsByTagName('script')[0];
|
|
g.async=true; g.src=u+'matomo.js'; s.parentNode.insertBefore(g,s);
|
|
})();
|
|
</script>
|
|
<!-- End Matomo Code -->
|
|
{% endblock %}
|