-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
64 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -266,54 +266,73 @@ <h2 class="title mb-1 is-2">Theme Demo</h2> | |
</div> | ||
</div> | ||
</section> | ||
{% include home/hero.html %} | ||
{% include home/get-started.html %} | ||
{% include home/features.html %} | ||
{% include home/lessons.html %} | ||
|
||
|
||
|
||
<footer class="pt-6 pb-6"> | ||
<div class="container"> | ||
<div class="columns is-multiline"> | ||
<div class="column is-full"> | ||
<div class="content"> | ||
<h3 class="title is-4">Sign up for our newsletter.</h3> | ||
<p>Sign up for our newsletter to stay updated on the latest news. Don't miss out, join our newsletter today!</p> | ||
<form class="mt-4 is-flex"> | ||
<div class="field has-addons"> | ||
<div class="control has-icons-left is-expanded"> | ||
<input class="input" type="email" placeholder="Enter your email"> | ||
<span class="icon is-small is-left"> | ||
✉️ | ||
</span> | ||
</div> | ||
<div class="control"> | ||
<button class="button is-primary">Subscribe</button> | ||
</div> | ||
</div> | ||
</form> | ||
</div> | ||
<footer class="footer has-background-white pt-5"> | ||
<div class="container"> | ||
<!-- Top Section --> | ||
<div class="columns is-multiline"> | ||
<!-- About Company --> | ||
<div class="column is-4"> | ||
<div class="mb-4"> | ||
<figure class="image is-64x64 is-skeleton"> | ||
<img alt="Placeholder" src="https://placehold.co/64x64"> | ||
</figure> | ||
<p class="mt-4"> Geek is feature-rich components and beautifully Bulma-based UIKit for developers, built with a responsive framework. </p> | ||
<!-- Social Media Links --> | ||
<div class="is-flex mt-4 is-align-items-center"> <a href="#" class="icon mr-3"> <i class="fab fa-facebook"></i> </a> <a href="#" class="icon mr-3"> <i class="fab fa-twitter"></i> </a> <a href="#" class="icon"> <i class="fab fa-instagram"></i> </a> </div> | ||
</div> | ||
</div> | ||
<!-- Company Links --> | ||
<div class="column is-2"> | ||
<div class="mb-4"> | ||
<h3 class="title is-5 mb-3">Company</h3> | ||
<ul> | ||
<li><a href="#" class="has-text-dark">About</a></li> | ||
<li><a href="#" class="has-text-dark">Pricing</a></li> | ||
<li><a href="#" class="has-text-dark">Blog</a></li> | ||
<li><a href="#" class="has-text-dark">Careers</a></li> | ||
<li><a href="#" class="has-text-dark">Contact</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<!-- Support Links --> | ||
<div class="column is-2"> | ||
<div class="mb-4"> | ||
<h3 class="title is-5 mb-3">Support</h3> | ||
<ul> | ||
<li><a href="#" class="has-text-dark">Help and Support</a></li> | ||
<li><a href="#" class="has-text-dark">Become Instructor</a></li> | ||
<li><a href="#" class="has-text-dark">Get the app</a></li> | ||
<li><a href="#" class="has-text-dark">FAQ’s</a></li> | ||
<li><a href="#" class="has-text-dark">Tutorial</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div class="column is-full mt-5"> | ||
<div class="content"> | ||
<ul class="is-flex is-flex-wrap-wrap"> | ||
<li class="mr-4"> | ||
<a href="/#features">Features</a> | ||
</li> | ||
<li class="mr-4"> | ||
<a href="/tutorials/cs50">Lessons</a> | ||
</li> | ||
<li> | ||
<a href="/#pricing">Pricing</a> | ||
</li> | ||
</ul> | ||
<p class="mt-3">© 2023 IO Academy. All rights reserved.</p> | ||
</div> | ||
<!-- Contact Info --> | ||
<div class="column is-3"> | ||
<div class="mb-4"> | ||
<h3 class="title is-5 mb-3">Get in Touch</h3> | ||
<p>339 McDermott Points Hettingerhaven, NV 15283</p> | ||
<p> Email: <a href="mailto:[email protected]" class="has-text-dark">[email protected]</a> </p> | ||
<p> Phone: <span class="has-text-dark has-text-weight-semibold">(000) 123 456 789</span> </p> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
</div> | ||
<!-- Bottom Section --> | ||
<div class="columns is-vcentered mt-6 pt-4 border-top"> | ||
<!-- CopyRight --> | ||
<div class="column is-4"> | ||
<p> © <span id="copyright"></span> Geeks-UI, Inc. All Rights Reserved </p> | ||
<script> document.getElementById("copyright").textContent = new Date().getFullYear(); </script> | ||
</div> | ||
<!-- Footer Links --> | ||
<div class="column is-8 has-text-right"> | ||
<nav class="level"> <a href="#" class="level-item has-text-dark">Privacy Policy</a> <a href="#" class="level-item has-text-dark">Cookie Notice</a> <a href="#" class="level-item has-text-dark">Terms of Use</a> </nav> | ||
</div> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
{% include site-before-end.html %} | ||
</body> | ||
</html> |