update dependencies and run build

This commit is contained in:
David Miller 2021-04-27 15:33:34 -04:00
parent 8647dd5d47
commit 68298be8b9
7 changed files with 3888 additions and 917 deletions

View File

@ -21,7 +21,7 @@ $(function () {
$this = $("#sendMessageButton");
$this.prop("disabled", true); // Disable submit button until AJAX call is complete to prevent duplicate messages
$.ajax({
url: "/assets/mail/contact_me.php",
url: "/assets/mail/contact_me.php", // Make sure this points to the contact_me.php file on your server
type: "POST",
data: {
name: name,
@ -56,8 +56,8 @@ $(function () {
$("#success > .alert-danger").append(
$("<strong>").text(
"Sorry " +
firstName +
", it seems that my mail server is not responding. Please try again later!"
firstName +
", it seems that my mail server is not responding. Please try again later!"
)
);
$("#success > .alert-danger").append("</div>");

File diff suppressed because it is too large Load Diff

2
dist/css/styles.css vendored
View File

@ -1,6 +1,6 @@
@charset "UTF-8";
/*!
* Start Bootstrap - Agency v6.0.4 (https://startbootstrap.com/theme/agency)
* Start Bootstrap - Agency v6.0.5 (https://startbootstrap.com/theme/agency)
* Copyright 2013-2021 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-agency/blob/master/LICENSE)
*/

2
dist/index.html vendored
View File

@ -215,7 +215,7 @@
<div class="timeline-image"><img class="rounded-circle img-fluid" src="assets/img/about/4.jpg" alt="..." /></div>
<div class="timeline-panel">
<div class="timeline-heading">
<h4>July 2021</h4>
<h4>July 2020</h4>
<h4 class="subheading">Phase Two Expansion</h4>
</div>
<div class="timeline-body"><p class="text-muted">Lorem ipsum dolor sit amet, consectetur adipisicing elit. Sunt ut voluptatum eius sapiente, totam reiciendis temporibus qui quibusdam, recusandae sit vero unde, sed, incidunt et ea quo dolore laudantium consectetur!</p></div>

2
dist/js/scripts.js vendored
View File

@ -1,5 +1,5 @@
/*!
* Start Bootstrap - Agency v6.0.4 (https://startbootstrap.com/theme/agency)
* Start Bootstrap - Agency v6.0.5 (https://startbootstrap.com/theme/agency)
* Copyright 2013-2021 Start Bootstrap
* Licensed under MIT (https://github.com/StartBootstrap/startbootstrap-agency/blob/master/LICENSE)
*/

2999
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,7 +1,7 @@
{
"title": "Agency",
"name": "startbootstrap-agency",
"version": "6.0.4",
"version": "6.0.5",
"scripts": {
"build": "npm run clean && npm run build:pug && npm run build:scss && npm run build:scripts && npm run build:assets",
"build:assets": "node scripts/build-assets.js",
@ -42,11 +42,11 @@
"autoprefixer": "10.2.5",
"browser-sync": "2.26.14",
"chokidar": "3.5.1",
"concurrently": "6.0.0",
"postcss": "8.2.8",
"concurrently": "6.0.2",
"postcss": "8.2.13",
"prettier": "2.2.1",
"pug": "3.0.2",
"sass": "1.32.8",
"sass": "1.32.11",
"shelljs": "0.8.4",
"upath": "2.0.1"
}