update code comments and remove JS copyright date

This commit is contained in:
David Miller 2021-06-04 13:31:50 -04:00
parent 4b3f77328e
commit 603aca8521
2 changed files with 24 additions and 24 deletions

24
dist/index.html vendored
View File

@ -312,12 +312,13 @@
<h2 class="section-heading text-uppercase">Contact Us</h2> <h2 class="section-heading text-uppercase">Contact Us</h2>
<h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3> <h3 class="section-subheading text-muted">Lorem ipsum dolor sit amet consectetur.</h3>
</div> </div>
<!-- Contact Form--> <!-- * * * * * * * * * * * * * * *-->
<!----> <!-- * * SB Forms Contact Form * *-->
<!-- This form is pre-integrated with SB Forms--> <!-- * * * * * * * * * * * * * * *-->
<!-- This form is pre-integrated with SB Forms.-->
<!-- To make this form functional, sign up at--> <!-- To make this form functional, sign up at-->
<!-- https://startbootstrap.com/solution/contact-forms--> <!-- https://startbootstrap.com/solution/contact-forms-->
<!-- to get your API token!--> <!-- to get an API token!-->
<form id="contactForm" data-sb-form-api-token="API_TOKEN"> <form id="contactForm" data-sb-form-api-token="API_TOKEN">
<div class="row align-items-stretch mb-5"> <div class="row align-items-stretch mb-5">
<div class="col-md-6"> <div class="col-md-6">
@ -372,14 +373,7 @@
<footer class="footer py-4"> <footer class="footer py-4">
<div class="container"> <div class="container">
<div class="row align-items-center"> <div class="row align-items-center">
<div class="col-lg-4 text-lg-start"> <div class="col-lg-4 text-lg-start">Copyright &copy; Your Website 2021</div>
Copyright &copy; Your Website
<!-- This script automatically adds the current year to your website footer-->
<!-- (credit: https://updateyourfooter.com/)-->
<script>
document.write(new Date().getFullYear());
</script>
</div>
<div class="col-lg-4 my-3 my-lg-0"> <div class="col-lg-4 my-3 my-lg-0">
<a class="btn btn-dark btn-social mx-2" href="#!"><i class="fab fa-twitter"></i></a> <a class="btn btn-dark btn-social mx-2" href="#!"><i class="fab fa-twitter"></i></a>
<a class="btn btn-dark btn-social mx-2" href="#!"><i class="fab fa-facebook-f"></i></a> <a class="btn btn-dark btn-social mx-2" href="#!"><i class="fab fa-facebook-f"></i></a>
@ -607,6 +601,10 @@
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script> <script src="https://cdn.jsdelivr.net/npm/bootstrap@5.0.1/dist/js/bootstrap.bundle.min.js"></script>
<!-- Core theme JS--> <!-- Core theme JS-->
<script src="js/scripts.js"></script> <script src="js/scripts.js"></script>
<!-- SB Forms JS--> <!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<!-- * * SB Forms JS * *-->
<!-- * * Activate your form at https://startbootstrap.com/solution/contact-forms * *-->
<!-- * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *-->
<script src="https://cdn.startbootstrap.com/sb-forms-latest.js"></script>
</body> </body>
</html> </html>

View File

@ -280,12 +280,14 @@ html(lang='en')
h2.section-heading.text-uppercase Contact Us h2.section-heading.text-uppercase Contact Us
h3.section-subheading.text-muted Lorem ipsum dolor sit amet consectetur. h3.section-subheading.text-muted Lorem ipsum dolor sit amet consectetur.
// Contact Form // * * * * * * * * * * * * * * *
// // * * SB Forms Contact Form * *
// This form is pre-integrated with SB Forms // * * * * * * * * * * * * * * *
// This form is pre-integrated with SB Forms.
// To make this form functional, sign up at // To make this form functional, sign up at
// https://startbootstrap.com/solution/contact-forms // https://startbootstrap.com/solution/contact-forms
// to get your API token! // to get an API token!
form#contactForm(data-sb-form-api-token='API_TOKEN') form#contactForm(data-sb-form-api-token='API_TOKEN')
.row.align-items-stretch.mb-5 .row.align-items-stretch.mb-5
@ -365,11 +367,7 @@ html(lang='en')
.container .container
.row.align-items-center .row.align-items-center
.col-lg-4.text-lg-start .col-lg-4.text-lg-start
| Copyright &copy; Your Website | Copyright &copy; Your Website 2021
// This script automatically adds the current year to your website footer
// (credit: https://updateyourfooter.com/)
script.
document.write(new Date().getFullYear());
.col-lg-4.my-3.my-lg-0 .col-lg-4.my-3.my-lg-0
a.btn.btn-dark.btn-social.mx-2(href='#!') a.btn.btn-dark.btn-social.mx-2(href='#!')
i.fab.fa-twitter i.fab.fa-twitter
@ -395,5 +393,9 @@ html(lang='en')
// Core theme JS // Core theme JS
script(src='js/scripts.js') script(src='js/scripts.js')
// SB Forms JS // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
//- script(src='path/to/cdn.js') // * * SB Forms JS * *
// * * Activate your form at https://startbootstrap.com/solution/contact-forms * *
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
script(src='https://cdn.startbootstrap.com/sb-forms-latest.js')