Feat(UI): Blog with article page and Newsletter signup form.
This commit is contained in:
@@ -89,15 +89,17 @@
|
||||
font-size: 15px;
|
||||
/* height: 18px; */
|
||||
cursor: pointer;
|
||||
padding-top: 5vh;
|
||||
padding: 4.5px 0;
|
||||
}
|
||||
#overlayHamburger .container:hover {
|
||||
color: var(--colour-page-background);
|
||||
background-color: var(--colour-primary);
|
||||
}
|
||||
#overlayHamburger > .container {
|
||||
/*
|
||||
padding-top: 4.5px;
|
||||
padding-bottom: 4.5px;
|
||||
*/
|
||||
}
|
||||
#overlayHamburger .container a {
|
||||
width: 100%;
|
||||
@@ -107,6 +109,7 @@
|
||||
*/
|
||||
color: var(--colour-text);
|
||||
text-decoration: none;
|
||||
line-height: initial;
|
||||
}
|
||||
#overlayHamburger .container a:hover {
|
||||
color: var(--colour-page-background);
|
||||
|
||||
@@ -1,15 +1,17 @@
|
||||
|
||||
#pageBody {
|
||||
padding-top: 2vh;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
background-color: #f8f9fa;
|
||||
}
|
||||
|
||||
/* Header */
|
||||
|
||||
0
static/css/pages/blog/newsletter_success.css
Normal file
0
static/css/pages/blog/newsletter_success.css
Normal file
@@ -17,6 +17,7 @@
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
text-align: center;
|
||||
}
|
||||
.contact-form textarea {
|
||||
max-width: 40vw;
|
||||
@@ -38,6 +39,7 @@
|
||||
border: 2px solid var(--colour-accent);
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
max-width: 40vw;
|
||||
}
|
||||
textarea.form-input {
|
||||
min-height: 120px;
|
||||
@@ -45,7 +47,7 @@ textarea.form-input {
|
||||
|
||||
.marketing-consent input {
|
||||
display: inline-block;
|
||||
margin-left: 20%;
|
||||
/* margin-left: 20%; */
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
|
||||
@@ -2,14 +2,13 @@
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
background-color: #f8f9fa;
|
||||
background: var(--colour-page-background-1);
|
||||
}
|
||||
|
||||
/* Header */
|
||||
@@ -84,6 +83,38 @@ body {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
padding: 8rem 2rem 4rem;
|
||||
background: linear-gradient(45deg, var(--colour-page-background-1), var(--colour-page-background-2)); /* linear-gradient(45deg, #f8fafc, #eff6ff); */
|
||||
}
|
||||
.hero-content {
|
||||
max-width: 600px;
|
||||
}
|
||||
.hero h1 {
|
||||
line-height: 1.2;
|
||||
margin-bottom: 1.5rem;
|
||||
color: var(--colour-text);
|
||||
}
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 2rem;
|
||||
color: var(--colour-secondary);
|
||||
}
|
||||
section.hero .button {
|
||||
margin: 0 auto;
|
||||
margin-bottom: 2vh;
|
||||
display: block;
|
||||
background-color: var(--colour-success-title);
|
||||
color: var(--colour-text-background);
|
||||
}
|
||||
section.hero .button:hover {
|
||||
background-color: var(--colour-success-highlight);
|
||||
color: var(--colour-success-title);
|
||||
}
|
||||
|
||||
|
||||
/* Featured Post */
|
||||
.featured-post {
|
||||
background: white;
|
||||
@@ -332,6 +363,13 @@ body {
|
||||
background: #e55a2b;
|
||||
}
|
||||
|
||||
#form_newsletter input[type="email"] {
|
||||
width: 80%;
|
||||
margin: 0 10%;
|
||||
padding: 0.5vh;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #2d3748;
|
||||
|
||||
1020
static/dist/css/blog_article.bundle.css
vendored
Normal file
1020
static/dist/css/blog_article.bundle.css
vendored
Normal file
File diff suppressed because it is too large
Load Diff
1
static/dist/css/blog_article.bundle.css.map
vendored
Normal file
1
static/dist/css/blog_article.bundle.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
393
static/dist/css/blog_home.bundle.css
vendored
393
static/dist/css/blog_home.bundle.css
vendored
@@ -76,369 +76,17 @@
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
/* Common */
|
||||
section {
|
||||
padding: 2rem;
|
||||
}
|
||||
p {
|
||||
width: 100%;
|
||||
font-size: 16px;
|
||||
}
|
||||
p.section-title,
|
||||
p.section-subtitle {
|
||||
margin: 0 auto;
|
||||
}
|
||||
.section-subtitle {
|
||||
font-size: 18px;
|
||||
}
|
||||
ul li {
|
||||
font-size: 16px;
|
||||
}
|
||||
|
||||
section.benefits .card.benefits,
|
||||
section.social-proof .card.social-proof {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
section.problem,
|
||||
section.benefits,
|
||||
section.solution,
|
||||
section.testimonial {
|
||||
padding: 4rem 2rem;
|
||||
background: var(--colour-page-background-1);
|
||||
}
|
||||
section.problem .card.problem,
|
||||
section.benefits .card.benefits,
|
||||
section.solution .card.solution,
|
||||
section.testimonial .card.testimonial {
|
||||
background: var(--colour-text-background);
|
||||
border-radius: 8px;
|
||||
max-width: 800px;
|
||||
margin: 3rem auto 0;
|
||||
box-shadow: 0 4px 6px rgba(0,0,0,0.1);
|
||||
}
|
||||
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
padding: 8rem 2rem 4rem;
|
||||
background: linear-gradient(45deg, var(--colour-page-background-1), var(--colour-page-background-2)); /* linear-gradient(45deg, #f8fafc, #eff6ff); */
|
||||
}
|
||||
.hero-content {
|
||||
max-width: 600px;
|
||||
}
|
||||
.hero h1 {
|
||||
line-height: 1.2;
|
||||
margin-bottom: 1.5rem;
|
||||
color: var(--colour-text);
|
||||
}
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 2rem;
|
||||
color: var(--colour-secondary);
|
||||
}
|
||||
section.hero .button {
|
||||
margin: 0 auto;
|
||||
margin-bottom: 2vh;
|
||||
display: block;
|
||||
background-color: var(--colour-success-title);
|
||||
color: var(--colour-text-background);
|
||||
}
|
||||
section.hero .button:hover {
|
||||
background-color: var(--colour-success-highlight);
|
||||
color: var(--colour-success-title);
|
||||
}
|
||||
|
||||
|
||||
/* Problem Section */
|
||||
section.problem {
|
||||
background-color: var(--colour-error-highlight);
|
||||
}
|
||||
section.problem h2 {
|
||||
color: var(--colour-error-title);
|
||||
}
|
||||
section.problem .card {
|
||||
border-left: 4px solid var(--colour-error-accent);
|
||||
}
|
||||
section.problem ul li {
|
||||
list-style: none;
|
||||
}
|
||||
|
||||
|
||||
/*
|
||||
section.problem .problem.card:hover {
|
||||
transform: translateY(-5px);
|
||||
}
|
||||
*/
|
||||
section.problem .section-subtitle {
|
||||
/* font-size: 18px; */
|
||||
font-weight: bold;
|
||||
}
|
||||
/*
|
||||
section.problem ul li::before {
|
||||
content: "😤";
|
||||
position: absolute;
|
||||
left: 0;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/* Benefits Section * /
|
||||
section.benefits .section-subtitle {
|
||||
font-size: 18px;
|
||||
font-weight: bold;
|
||||
}
|
||||
*/
|
||||
section.benefits {
|
||||
background-color: var(--colour-success-highlight);
|
||||
}
|
||||
section.benefits .container .card .container {
|
||||
min-width: 250px;
|
||||
}
|
||||
section.benefits h2 {
|
||||
color: var(--colour-success);
|
||||
}
|
||||
section.benefits .card {
|
||||
border-left: 4px solid var(--colour-success);
|
||||
}
|
||||
|
||||
/* Solution Section */
|
||||
section.solution .container .card {
|
||||
margin-top: 1vh;
|
||||
max-width: min(2000px, 80vw);
|
||||
}
|
||||
|
||||
section.benefits .card.benefits .container,
|
||||
section.solution .container .card .container {
|
||||
padding: 1vh 2vw;
|
||||
max-width: min(500px, 80vw);
|
||||
}
|
||||
section.solution .container .card .container p {
|
||||
margin-bottom: 1vh;
|
||||
}
|
||||
section.solution .project-thumbnail img {
|
||||
max-width: min(500px, 80vw);
|
||||
max-height: min(500px, 80vw);
|
||||
border-radius: 1vh;
|
||||
}
|
||||
|
||||
section.solution .project-thumbnail img {
|
||||
overflow: hidden;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
section.solution .project-thumbnail:hover {
|
||||
transform: scale(1.75);
|
||||
}
|
||||
|
||||
/* Social Proof Section * /
|
||||
section.social-proof {
|
||||
padding: 6rem 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
section.social-proof .card.social-proof {
|
||||
background: var(--colour-page-background);
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
text-align: center;
|
||||
max-width: 400px;
|
||||
margin: 3rem auto 0;
|
||||
}
|
||||
|
||||
section.social-proof ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
* /
|
||||
|
||||
section.social-proof .section-subtitle {
|
||||
font-size: 16px;
|
||||
}
|
||||
section.social-proof ul li {
|
||||
font-size: 14px;
|
||||
}
|
||||
*/
|
||||
section.social-proof {
|
||||
padding: 4rem 0;
|
||||
background: var(--colour-text-background);
|
||||
}
|
||||
section.social-proof .card.social-proof {
|
||||
background: var(--colour-page-background);
|
||||
border-radius: 8px;
|
||||
transition: transform 0.3s ease;
|
||||
padding: 1.5vh;
|
||||
}
|
||||
section.social-proof .section-title {
|
||||
font-weight: bold;
|
||||
color: var(--colour-text-link-visited);
|
||||
margin-bottom: 0.25vh;
|
||||
}
|
||||
section.social-proof .section-subtitle {
|
||||
margin: 0 1vw 1vh;
|
||||
}
|
||||
section.social-proof .container {
|
||||
width: fit-content;
|
||||
margin: 0 2vw;
|
||||
min-width: 175px;
|
||||
}
|
||||
section.social-proof > .container {
|
||||
max-width: min(900px, 90vw);
|
||||
margin: 1vh auto;
|
||||
}
|
||||
|
||||
/* Early Access Section * /
|
||||
section.early-access {
|
||||
padding: 6rem 0;
|
||||
background: white;
|
||||
}
|
||||
|
||||
section.early-access .card.early-access {
|
||||
background: var(--colour-page-background);
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
text-align: center;
|
||||
max-width: 400px;
|
||||
margin: 3rem auto 0;
|
||||
}
|
||||
|
||||
section.early-access ul {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
}
|
||||
section.early-access a.button {
|
||||
margin: 0.25rem;
|
||||
}
|
||||
*/
|
||||
|
||||
/* Features section * /
|
||||
section.features .button {
|
||||
margin-top: 0;
|
||||
}
|
||||
*/
|
||||
|
||||
/* Testimonials section */
|
||||
section.testimonial p {
|
||||
margin-bottom: 1vh;
|
||||
}
|
||||
section.testimonial h2 {
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/* CTA Section */
|
||||
.cta-1,
|
||||
.cta-2 {
|
||||
padding: 6rem 2rem;
|
||||
background: linear-gradient(135deg, var(--colour-primary), var(--colour-text-link-visited));
|
||||
color: white;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
section.cta-2 .button {
|
||||
margin: 2vh 1vw;
|
||||
}
|
||||
section.cta-2 .card {
|
||||
background-color: transparent;
|
||||
margin: 1vh auto;
|
||||
}
|
||||
section.cta-2 .card .container {
|
||||
background-color: var(--colour-page-background);
|
||||
color: var(--colour-primary);
|
||||
border-radius: 1vh;
|
||||
padding: 1.5vh 3vw;
|
||||
margin: 1vh;
|
||||
min-width: 200px;
|
||||
min-height: 120px;
|
||||
}
|
||||
section.cta-2 .card .container h3 {
|
||||
margin: 0 auto;
|
||||
}
|
||||
section.cta-2 .container p {
|
||||
margin-top: 1vh;
|
||||
}
|
||||
/* FAQs * /
|
||||
section.faq .button {
|
||||
margin-bottom: 0.25rem;
|
||||
}
|
||||
*/
|
||||
|
||||
|
||||
/* Animations */
|
||||
/* Fallback styles to ensure content is visible without JS */
|
||||
.reveal {
|
||||
opacity: 1; /* Default visible state */
|
||||
}
|
||||
|
||||
/* Only hide elements if browser supports Intersection Observer */
|
||||
@supports (animation-name: fade) {
|
||||
.reveal {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
.reveal.active {
|
||||
animation: fade-up 0.8s ease-out forwards;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fade-up {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(30px);
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0);
|
||||
}
|
||||
}
|
||||
|
||||
.delay-1 { animation-delay: 0.1s; }
|
||||
.delay-2 { animation-delay: 0.2s; }
|
||||
.delay-3 { animation-delay: 0.3s; }
|
||||
.delay-4 { animation-delay: 0.4s; }
|
||||
|
||||
/* Buttons */
|
||||
.topnav .nav-links .button {
|
||||
padding: 0.5vh 0.75vh;
|
||||
}
|
||||
.button {
|
||||
padding: 0.75rem 1.5rem;
|
||||
/* border-radius: 6px; * /
|
||||
margin: 0.75rem; */
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
.button-primary {
|
||||
background: var(--colour-primary);
|
||||
color: white;
|
||||
}
|
||||
|
||||
.button-primary:hover {
|
||||
background: var(--colour-secondary);
|
||||
}
|
||||
|
||||
.button-light {
|
||||
background: white;
|
||||
color: var(--colour-primary);
|
||||
}
|
||||
|
||||
.button-light:hover {
|
||||
background: var(--colour-page-background);
|
||||
}
|
||||
|
||||
.logo:hover{
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
* {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
body {
|
||||
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
|
||||
line-height: 1.6;
|
||||
color: #333;
|
||||
background-color: #f8f9fa;
|
||||
background: var(--colour-page-background-1);
|
||||
}
|
||||
|
||||
/* Header */
|
||||
@@ -513,6 +161,38 @@ body {
|
||||
margin-bottom: 3rem;
|
||||
}
|
||||
|
||||
|
||||
/* Hero Section */
|
||||
.hero {
|
||||
padding: 8rem 2rem 4rem;
|
||||
background: linear-gradient(45deg, var(--colour-page-background-1), var(--colour-page-background-2)); /* linear-gradient(45deg, #f8fafc, #eff6ff); */
|
||||
}
|
||||
.hero-content {
|
||||
max-width: 600px;
|
||||
}
|
||||
.hero h1 {
|
||||
line-height: 1.2;
|
||||
margin-bottom: 1.5rem;
|
||||
color: var(--colour-text);
|
||||
}
|
||||
.hero p {
|
||||
font-size: 1.25rem;
|
||||
margin-bottom: 2rem;
|
||||
color: var(--colour-secondary);
|
||||
}
|
||||
section.hero .button {
|
||||
margin: 0 auto;
|
||||
margin-bottom: 2vh;
|
||||
display: block;
|
||||
background-color: var(--colour-success-title);
|
||||
color: var(--colour-text-background);
|
||||
}
|
||||
section.hero .button:hover {
|
||||
background-color: var(--colour-success-highlight);
|
||||
color: var(--colour-success-title);
|
||||
}
|
||||
|
||||
|
||||
/* Featured Post */
|
||||
.featured-post {
|
||||
background: white;
|
||||
@@ -761,6 +441,13 @@ body {
|
||||
background: #e55a2b;
|
||||
}
|
||||
|
||||
#form_newsletter input[type="email"] {
|
||||
width: 80%;
|
||||
margin: 0 10%;
|
||||
padding: 0.5vh;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #2d3748;
|
||||
|
||||
2
static/dist/css/blog_home.bundle.css.map
vendored
2
static/dist/css/blog_home.bundle.css.map
vendored
File diff suppressed because one or more lines are too long
228
static/dist/css/blog_newsletter_success.bundle.css
vendored
Normal file
228
static/dist/css/blog_newsletter_success.bundle.css
vendored
Normal file
@@ -0,0 +1,228 @@
|
||||
|
||||
/* Home page
|
||||
*/
|
||||
|
||||
/* Footer */
|
||||
.footer {
|
||||
background: #1f2937;
|
||||
color: #f3f4f6;
|
||||
padding: 4rem 2rem 2rem;
|
||||
}
|
||||
|
||||
.footer-content {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
|
||||
gap: 2rem;
|
||||
margin-bottom: 2rem;
|
||||
}
|
||||
|
||||
.footer-section h3 {
|
||||
color: #fff;
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.2rem;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.footer-section ul {
|
||||
list-style: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.footer-section ul li {
|
||||
margin-bottom: 0.5rem;
|
||||
}
|
||||
|
||||
.footer-section a {
|
||||
color: #f3f4f6;
|
||||
text-decoration: none;
|
||||
transition: color 0.3s ease;
|
||||
}
|
||||
|
||||
.footer-section a:hover {
|
||||
color: #fff;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
.footer-bottom {
|
||||
border-top: 1px solid #374151;
|
||||
padding-top: 2rem;
|
||||
text-align: center;
|
||||
font-size: 0.9rem;
|
||||
}
|
||||
|
||||
.footer-bottom a {
|
||||
color: aquamarine;
|
||||
}
|
||||
|
||||
.footer-section.contact {
|
||||
width: 100%;
|
||||
}
|
||||
.footer-section .container {
|
||||
padding: 0;
|
||||
}
|
||||
.footer-section .container.row .container.column {
|
||||
padding: 1vh 2vw;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.footer-content {
|
||||
grid-template-columns: 1fr;
|
||||
text-align: center;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 540px) {
|
||||
.nav-links {
|
||||
display: none;
|
||||
}
|
||||
}
|
||||
|
||||
.contact-section {
|
||||
padding: 2rem 2rem 4rem;
|
||||
}
|
||||
.contact-section h1 {
|
||||
margin: 1rem auto;
|
||||
}
|
||||
.contact-section p {
|
||||
margin: 0.5rem auto;
|
||||
}
|
||||
|
||||
.contact-form {
|
||||
max-width: 60vw;
|
||||
width: fit-content;
|
||||
margin: 0 auto;
|
||||
background: var(--colour-text-background);
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
text-align: center;
|
||||
}
|
||||
.contact-form textarea {
|
||||
max-width: 40vw;
|
||||
}
|
||||
|
||||
.form-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 200px 1fr;
|
||||
gap: 1.5rem;
|
||||
margin-bottom: 1rem;
|
||||
}
|
||||
.form-label {
|
||||
padding-top: 0.5rem;
|
||||
font-weight: 500;
|
||||
}
|
||||
.form-input {
|
||||
width: 100%;
|
||||
padding: 0.5rem;
|
||||
border: 2px solid var(--colour-accent);
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
max-width: 40vw;
|
||||
}
|
||||
textarea.form-input {
|
||||
min-height: 120px;
|
||||
}
|
||||
|
||||
.marketing-consent input {
|
||||
display: inline-block;
|
||||
/* margin-left: 20%; */
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
|
||||
.container.row.captcha > div {
|
||||
margin: 0 auto;
|
||||
}
|
||||
.container.captcha > div:first-child > label:first-child {
|
||||
display: flex;
|
||||
justify-content: center;
|
||||
width: fit-content;
|
||||
text-align: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
.container.captcha > p:last-child{
|
||||
font-size: 0.9rem;
|
||||
margin: 1vh 1vw;
|
||||
}
|
||||
.container.captcha .altcha-widget,
|
||||
.container.captcha .altcha-widget div.altcha {
|
||||
width: 200px;
|
||||
}
|
||||
.container.captcha .altcha-main {
|
||||
padding-left: 1rem;
|
||||
padding-top: 0.75rem;
|
||||
padding-bottom: 0;
|
||||
}
|
||||
.container.captcha .altcha-main > :last-child {
|
||||
display: none;
|
||||
}
|
||||
.container.captcha .altcha,
|
||||
altcha-widget > div:first-child,
|
||||
.container.captcha > div > .altcha-widget > div {
|
||||
width: fit-content;
|
||||
display: flex;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
|
||||
input[type="submit"] {
|
||||
margin-left: 40%;
|
||||
margin: 0 auto;
|
||||
padding: 0.75rem 1.5rem;
|
||||
background: #2563eb;
|
||||
color: white;
|
||||
border: none;
|
||||
border-radius: 4px;
|
||||
cursor: pointer;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
input[type="submit"]:hover {
|
||||
background: #1d4ed8;
|
||||
}
|
||||
|
||||
.data-notice {
|
||||
margin-top: 3rem;
|
||||
padding: 1.5rem;
|
||||
background: #f3f4f6;
|
||||
border-radius: 4px;
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
||||
.data-notice h3 {
|
||||
margin-bottom: 1rem;
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
.data-notice ul li {
|
||||
list-style-position: inside;
|
||||
}
|
||||
|
||||
@media (max-width: 768px) {
|
||||
.contact-form {
|
||||
max-width: 80vw;
|
||||
}
|
||||
.contact-form textarea {
|
||||
max-width: 60vw;
|
||||
}
|
||||
.form-grid {
|
||||
grid-template-columns: 1fr;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.form-label {
|
||||
padding-top: 0;
|
||||
}
|
||||
|
||||
.submit-button {
|
||||
margin-left: 0;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@media (max-width: 400px) {
|
||||
}
|
||||
|
||||
|
||||
/*# sourceMappingURL=blog_newsletter_success.bundle.css.map*/
|
||||
1
static/dist/css/blog_newsletter_success.bundle.css.map
vendored
Normal file
1
static/dist/css/blog_newsletter_success.bundle.css.map
vendored
Normal file
File diff suppressed because one or more lines are too long
@@ -95,6 +95,7 @@
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
text-align: center;
|
||||
}
|
||||
.contact-form textarea {
|
||||
max-width: 40vw;
|
||||
@@ -116,6 +117,7 @@
|
||||
border: 2px solid var(--colour-accent);
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
max-width: 40vw;
|
||||
}
|
||||
textarea.form-input {
|
||||
min-height: 120px;
|
||||
@@ -123,7 +125,7 @@ textarea.form-input {
|
||||
|
||||
.marketing-consent input {
|
||||
display: inline-block;
|
||||
margin-left: 20%;
|
||||
/* margin-left: 20%; */
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
|
||||
File diff suppressed because one or more lines are too long
4
static/dist/css/core_contact.bundle.css
vendored
4
static/dist/css/core_contact.bundle.css
vendored
@@ -95,6 +95,7 @@
|
||||
padding: 2rem;
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 4px rgba(0,0,0,0.1);
|
||||
text-align: center;
|
||||
}
|
||||
.contact-form textarea {
|
||||
max-width: 40vw;
|
||||
@@ -116,6 +117,7 @@
|
||||
border: 2px solid var(--colour-accent);
|
||||
border-radius: 4px;
|
||||
font-size: 1rem;
|
||||
max-width: 40vw;
|
||||
}
|
||||
textarea.form-input {
|
||||
min-height: 120px;
|
||||
@@ -123,7 +125,7 @@ textarea.form-input {
|
||||
|
||||
.marketing-consent input {
|
||||
display: inline-block;
|
||||
margin-left: 20%;
|
||||
/* margin-left: 20%; */
|
||||
margin-bottom: 1.25rem;
|
||||
}
|
||||
|
||||
|
||||
2
static/dist/css/core_contact.bundle.css.map
vendored
2
static/dist/css/core_contact.bundle.css.map
vendored
File diff suppressed because one or more lines are too long
5
static/dist/css/main.bundle.css
vendored
5
static/dist/css/main.bundle.css
vendored
@@ -410,15 +410,17 @@ h5 {
|
||||
font-size: 15px;
|
||||
/* height: 18px; */
|
||||
cursor: pointer;
|
||||
padding-top: 5vh;
|
||||
padding: 4.5px 0;
|
||||
}
|
||||
#overlayHamburger .container:hover {
|
||||
color: var(--colour-page-background);
|
||||
background-color: var(--colour-primary);
|
||||
}
|
||||
#overlayHamburger > .container {
|
||||
/*
|
||||
padding-top: 4.5px;
|
||||
padding-bottom: 4.5px;
|
||||
*/
|
||||
}
|
||||
#overlayHamburger .container a {
|
||||
width: 100%;
|
||||
@@ -428,6 +430,7 @@ h5 {
|
||||
*/
|
||||
color: var(--colour-text);
|
||||
text-decoration: none;
|
||||
line-height: initial;
|
||||
}
|
||||
#overlayHamburger .container a:hover {
|
||||
color: var(--colour-page-background);
|
||||
|
||||
2
static/dist/css/main.bundle.css.map
vendored
2
static/dist/css/main.bundle.css.map
vendored
File diff suppressed because one or more lines are too long
23
static/dist/js/blog_article.bundle.js
vendored
Normal file
23
static/dist/js/blog_article.bundle.js
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/******/ (() => { // webpackBootstrap
|
||||
/******/ "use strict";
|
||||
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other entry modules.
|
||||
(() => {
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
})();
|
||||
|
||||
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other entry modules.
|
||||
(() => {
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
})();
|
||||
|
||||
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other entry modules.
|
||||
(() => {
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
})();
|
||||
|
||||
/******/ })()
|
||||
;
|
||||
//# sourceMappingURL=blog_article.bundle.js.map
|
||||
1
static/dist/js/blog_article.bundle.js.map
vendored
Normal file
1
static/dist/js/blog_article.bundle.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"js/blog_article.bundle.js","mappings":";;;;AAAA;;;;;;ACAA;;;;;;ACAA","sources":["webpack://app/./static/css/sections/core.css?6d04","webpack://app/./static/css/sections/blog.css?b688","webpack://app/./static/css/pages/blog/article.css?0060"],"sourcesContent":["// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};"],"names":[],"sourceRoot":""}
|
||||
6
static/dist/js/blog_home.bundle.js
vendored
6
static/dist/js/blog_home.bundle.js
vendored
@@ -18,12 +18,6 @@
|
||||
|
||||
})();
|
||||
|
||||
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other entry modules.
|
||||
(() => {
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
})();
|
||||
|
||||
/******/ })()
|
||||
;
|
||||
//# sourceMappingURL=blog_home.bundle.js.map
|
||||
2
static/dist/js/blog_home.bundle.js.map
vendored
2
static/dist/js/blog_home.bundle.js.map
vendored
@@ -1 +1 @@
|
||||
{"version":3,"file":"js/blog_home.bundle.js","mappings":";;;;AAAA;;;;;;ACAA;;;;;;ACAA;;;;;;ACAA","sources":["webpack://app/./static/css/sections/core.css?6d04","webpack://app/./static/css/pages/core/home.css?2b63","webpack://app/./static/css/sections/blog.css?b688","webpack://app/./static/css/pages/blog/home.css"],"sourcesContent":["// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};"],"names":[],"sourceRoot":""}
|
||||
{"version":3,"file":"js/blog_home.bundle.js","mappings":";;;;AAAA;;;;;;ACAA;;;;;;ACAA","sources":["webpack://app/./static/css/sections/core.css?6d04","webpack://app/./static/css/sections/blog.css?b688","webpack://app/./static/css/pages/blog/home.css"],"sourcesContent":["// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};"],"names":[],"sourceRoot":""}
|
||||
23
static/dist/js/blog_newsletter_success.bundle.js
vendored
Normal file
23
static/dist/js/blog_newsletter_success.bundle.js
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
/******/ (() => { // webpackBootstrap
|
||||
/******/ "use strict";
|
||||
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other entry modules.
|
||||
(() => {
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
})();
|
||||
|
||||
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other entry modules.
|
||||
(() => {
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
})();
|
||||
|
||||
// This entry needs to be wrapped in an IIFE because it needs to be isolated against other entry modules.
|
||||
(() => {
|
||||
// extracted by mini-css-extract-plugin
|
||||
|
||||
})();
|
||||
|
||||
/******/ })()
|
||||
;
|
||||
//# sourceMappingURL=blog_newsletter_success.bundle.js.map
|
||||
1
static/dist/js/blog_newsletter_success.bundle.js.map
vendored
Normal file
1
static/dist/js/blog_newsletter_success.bundle.js.map
vendored
Normal file
@@ -0,0 +1 @@
|
||||
{"version":3,"file":"js/blog_newsletter_success.bundle.js","mappings":";;;;AAAA;;;;;;ACAA;;;;;;ACAA","sources":["webpack://app/./static/css/sections/core.css?6d04","webpack://app/./static/css/pages/core/contact.css?164a","webpack://app/./static/css/pages/blog/newsletter_success.css"],"sourcesContent":["// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};","// extracted by mini-css-extract-plugin\nexport {};"],"names":[],"sourceRoot":""}
|
||||
228
static/dist/js/main.bundle.js
vendored
228
static/dist/js/main.bundle.js
vendored
@@ -5007,6 +5007,22 @@ var PageBlogHome = /*#__PURE__*/function (_BasePage) {
|
||||
value: function initialize() {
|
||||
this.sharedInitialize();
|
||||
// this.hookupButtonsNav();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
}, {
|
||||
key: "hookupButtonSubmitFormContactUs",
|
||||
value: function hookupButtonSubmitFormContactUs() {
|
||||
var button = document.querySelector('form input[type="submit"]');
|
||||
button.classList.add(flagButton);
|
||||
button.classList.add(flagButtonPrimary);
|
||||
button.innerText = 'Subscribe Now';
|
||||
}
|
||||
}, {
|
||||
key: "hookupFormNewsletter",
|
||||
value: function hookupFormNewsletter() {
|
||||
var submitButton = document.querySelector('#submit');
|
||||
submitButton.innerText = 'Subscribe Now';
|
||||
}
|
||||
}, {
|
||||
key: "leave",
|
||||
@@ -5017,6 +5033,173 @@ var PageBlogHome = /*#__PURE__*/function (_BasePage) {
|
||||
}(BasePage);
|
||||
blog_home_defineProperty(PageBlogHome, "hash", hashPageBlogHome);
|
||||
|
||||
;// ./static/js/pages/blog/article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients.js
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_typeof(o) { "@babel/helpers - typeof"; return article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_typeof(o); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_toPropertyKey(o.key), o); } }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_createClass(e, r, t) { return r && article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_defineProperties(e.prototype, r), t && article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_callSuper(t, o, e) { return o = article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_getPrototypeOf(o), article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_possibleConstructorReturn(t, article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_isNativeReflectConstruct() ? Reflect.construct(o, e || [], article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_possibleConstructorReturn(t, e) { if (e && ("object" == article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_assertThisInitialized(t); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_superPropGet(t, o, e, r) { var p = article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_get(article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_getPrototypeOf(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_get() { return article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) { var p = article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_superPropBase(e, t); if (p) { var n = Object.getOwnPropertyDescriptor(p, t); return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value; } }, article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_get.apply(null, arguments); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_superPropBase(t, o) { for (; !{}.hasOwnProperty.call(t, o) && null !== (t = article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_getPrototypeOf(t));); return t; }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_getPrototypeOf(t) { return article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_getPrototypeOf(t); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_setPrototypeOf(t, e); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_setPrototypeOf(t, e) { return article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_setPrototypeOf(t, e); }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_defineProperty(e, r, t) { return (r = article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_toPropertyKey(t) { var i = article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_toPrimitive(t, "string"); return "symbol" == article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_typeof(i) ? i : i + ""; }
|
||||
function article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_toPrimitive(t, r) { if ("object" != article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||
// internal
|
||||
// import BasePage from "../base.js";
|
||||
|
||||
// external
|
||||
var PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients = /*#__PURE__*/function (_PageBlogHome) {
|
||||
function PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients(router) {
|
||||
article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_classCallCheck(this, PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients);
|
||||
return article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_callSuper(this, PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients, [router]);
|
||||
}
|
||||
article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_inherits(PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients, _PageBlogHome);
|
||||
return article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_createClass(PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients, [{
|
||||
key: "initialize",
|
||||
value: function initialize() {
|
||||
this.sharedInitialize();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
}, {
|
||||
key: "leave",
|
||||
value: function leave() {
|
||||
article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_superPropGet(PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients, "leave", this, 3)([]);
|
||||
}
|
||||
}]);
|
||||
}(PageBlogHome);
|
||||
article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients_defineProperty(PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients, "hash", hashPageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients);
|
||||
|
||||
;// ./static/js/pages/blog/article_the_science_behind_dog_training_assessments_how_to_track_real_progress.js
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_typeof(o) { "@babel/helpers - typeof"; return article_the_science_behind_dog_training_assessments_how_to_track_real_progress_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, article_the_science_behind_dog_training_assessments_how_to_track_real_progress_typeof(o); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, article_the_science_behind_dog_training_assessments_how_to_track_real_progress_toPropertyKey(o.key), o); } }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_createClass(e, r, t) { return r && article_the_science_behind_dog_training_assessments_how_to_track_real_progress_defineProperties(e.prototype, r), t && article_the_science_behind_dog_training_assessments_how_to_track_real_progress_defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_callSuper(t, o, e) { return o = article_the_science_behind_dog_training_assessments_how_to_track_real_progress_getPrototypeOf(o), article_the_science_behind_dog_training_assessments_how_to_track_real_progress_possibleConstructorReturn(t, article_the_science_behind_dog_training_assessments_how_to_track_real_progress_isNativeReflectConstruct() ? Reflect.construct(o, e || [], article_the_science_behind_dog_training_assessments_how_to_track_real_progress_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_possibleConstructorReturn(t, e) { if (e && ("object" == article_the_science_behind_dog_training_assessments_how_to_track_real_progress_typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return article_the_science_behind_dog_training_assessments_how_to_track_real_progress_assertThisInitialized(t); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (article_the_science_behind_dog_training_assessments_how_to_track_real_progress_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_superPropGet(t, o, e, r) { var p = article_the_science_behind_dog_training_assessments_how_to_track_real_progress_get(article_the_science_behind_dog_training_assessments_how_to_track_real_progress_getPrototypeOf(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_get() { return article_the_science_behind_dog_training_assessments_how_to_track_real_progress_get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) { var p = article_the_science_behind_dog_training_assessments_how_to_track_real_progress_superPropBase(e, t); if (p) { var n = Object.getOwnPropertyDescriptor(p, t); return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value; } }, article_the_science_behind_dog_training_assessments_how_to_track_real_progress_get.apply(null, arguments); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_superPropBase(t, o) { for (; !{}.hasOwnProperty.call(t, o) && null !== (t = article_the_science_behind_dog_training_assessments_how_to_track_real_progress_getPrototypeOf(t));); return t; }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_getPrototypeOf(t) { return article_the_science_behind_dog_training_assessments_how_to_track_real_progress_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, article_the_science_behind_dog_training_assessments_how_to_track_real_progress_getPrototypeOf(t); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && article_the_science_behind_dog_training_assessments_how_to_track_real_progress_setPrototypeOf(t, e); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_setPrototypeOf(t, e) { return article_the_science_behind_dog_training_assessments_how_to_track_real_progress_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, article_the_science_behind_dog_training_assessments_how_to_track_real_progress_setPrototypeOf(t, e); }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_defineProperty(e, r, t) { return (r = article_the_science_behind_dog_training_assessments_how_to_track_real_progress_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_toPropertyKey(t) { var i = article_the_science_behind_dog_training_assessments_how_to_track_real_progress_toPrimitive(t, "string"); return "symbol" == article_the_science_behind_dog_training_assessments_how_to_track_real_progress_typeof(i) ? i : i + ""; }
|
||||
function article_the_science_behind_dog_training_assessments_how_to_track_real_progress_toPrimitive(t, r) { if ("object" != article_the_science_behind_dog_training_assessments_how_to_track_real_progress_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != article_the_science_behind_dog_training_assessments_how_to_track_real_progress_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||
// internal
|
||||
// import BasePage from "../base.js";
|
||||
|
||||
// external
|
||||
var PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress = /*#__PURE__*/function (_PageBlogHome) {
|
||||
function PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress(router) {
|
||||
article_the_science_behind_dog_training_assessments_how_to_track_real_progress_classCallCheck(this, PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress);
|
||||
return article_the_science_behind_dog_training_assessments_how_to_track_real_progress_callSuper(this, PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress, [router]);
|
||||
}
|
||||
article_the_science_behind_dog_training_assessments_how_to_track_real_progress_inherits(PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress, _PageBlogHome);
|
||||
return article_the_science_behind_dog_training_assessments_how_to_track_real_progress_createClass(PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress, [{
|
||||
key: "initialize",
|
||||
value: function initialize() {
|
||||
this.sharedInitialize();
|
||||
// this.hookupButtonsNav();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
}, {
|
||||
key: "leave",
|
||||
value: function leave() {
|
||||
article_the_science_behind_dog_training_assessments_how_to_track_real_progress_superPropGet(PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress, "leave", this, 3)([]);
|
||||
}
|
||||
}]);
|
||||
}(PageBlogHome);
|
||||
article_the_science_behind_dog_training_assessments_how_to_track_real_progress_defineProperty(PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress, "hash", hashPageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress);
|
||||
|
||||
;// ./static/js/pages/blog/article_why_every_professional_trainer_needs_a_command_dictionary_in_2025.js
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_typeof(o) { "@babel/helpers - typeof"; return article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_typeof(o); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_toPropertyKey(o.key), o); } }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_createClass(e, r, t) { return r && article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_defineProperties(e.prototype, r), t && article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_callSuper(t, o, e) { return o = article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_getPrototypeOf(o), article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_possibleConstructorReturn(t, article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_isNativeReflectConstruct() ? Reflect.construct(o, e || [], article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_possibleConstructorReturn(t, e) { if (e && ("object" == article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_assertThisInitialized(t); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_superPropGet(t, o, e, r) { var p = article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_get(article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_getPrototypeOf(1 & r ? t.prototype : t), o, e); return 2 & r && "function" == typeof p ? function (t) { return p.apply(e, t); } : p; }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_get() { return article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_get = "undefined" != typeof Reflect && Reflect.get ? Reflect.get.bind() : function (e, t, r) { var p = article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_superPropBase(e, t); if (p) { var n = Object.getOwnPropertyDescriptor(p, t); return n.get ? n.get.call(arguments.length < 3 ? e : r) : n.value; } }, article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_get.apply(null, arguments); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_superPropBase(t, o) { for (; !{}.hasOwnProperty.call(t, o) && null !== (t = article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_getPrototypeOf(t));); return t; }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_getPrototypeOf(t) { return article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_getPrototypeOf(t); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_setPrototypeOf(t, e); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_setPrototypeOf(t, e) { return article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_setPrototypeOf(t, e); }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_defineProperty(e, r, t) { return (r = article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_toPropertyKey(t) { var i = article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_toPrimitive(t, "string"); return "symbol" == article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_typeof(i) ? i : i + ""; }
|
||||
function article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_toPrimitive(t, r) { if ("object" != article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||
// internal
|
||||
// import BasePage from "../base.js";
|
||||
|
||||
// external
|
||||
var PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025 = /*#__PURE__*/function (_PageBlogHome) {
|
||||
function PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025(router) {
|
||||
article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_classCallCheck(this, PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025);
|
||||
return article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_callSuper(this, PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025, [router]);
|
||||
}
|
||||
article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_inherits(PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025, _PageBlogHome);
|
||||
return article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_createClass(PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025, [{
|
||||
key: "initialize",
|
||||
value: function initialize() {
|
||||
this.sharedInitialize();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
}, {
|
||||
key: "leave",
|
||||
value: function leave() {
|
||||
article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_superPropGet(PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025, "leave", this, 3)([]);
|
||||
}
|
||||
}]);
|
||||
}(PageBlogHome);
|
||||
article_why_every_professional_trainer_needs_a_command_dictionary_in_2025_defineProperty(PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025, "hash", hashPageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025);
|
||||
|
||||
;// ./static/js/pages/blog/newsletter-success.js
|
||||
function newsletter_success_typeof(o) { "@babel/helpers - typeof"; return newsletter_success_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, newsletter_success_typeof(o); }
|
||||
function newsletter_success_classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
||||
function newsletter_success_defineProperties(e, r) { for (var t = 0; t < r.length; t++) { var o = r[t]; o.enumerable = o.enumerable || !1, o.configurable = !0, "value" in o && (o.writable = !0), Object.defineProperty(e, newsletter_success_toPropertyKey(o.key), o); } }
|
||||
function newsletter_success_createClass(e, r, t) { return r && newsletter_success_defineProperties(e.prototype, r), t && newsletter_success_defineProperties(e, t), Object.defineProperty(e, "prototype", { writable: !1 }), e; }
|
||||
function newsletter_success_callSuper(t, o, e) { return o = newsletter_success_getPrototypeOf(o), newsletter_success_possibleConstructorReturn(t, newsletter_success_isNativeReflectConstruct() ? Reflect.construct(o, e || [], newsletter_success_getPrototypeOf(t).constructor) : o.apply(t, e)); }
|
||||
function newsletter_success_possibleConstructorReturn(t, e) { if (e && ("object" == newsletter_success_typeof(e) || "function" == typeof e)) return e; if (void 0 !== e) throw new TypeError("Derived constructors may only return object or undefined"); return newsletter_success_assertThisInitialized(t); }
|
||||
function newsletter_success_assertThisInitialized(e) { if (void 0 === e) throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); return e; }
|
||||
function newsletter_success_isNativeReflectConstruct() { try { var t = !Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); } catch (t) {} return (newsletter_success_isNativeReflectConstruct = function _isNativeReflectConstruct() { return !!t; })(); }
|
||||
function newsletter_success_getPrototypeOf(t) { return newsletter_success_getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function (t) { return t.__proto__ || Object.getPrototypeOf(t); }, newsletter_success_getPrototypeOf(t); }
|
||||
function newsletter_success_inherits(t, e) { if ("function" != typeof e && null !== e) throw new TypeError("Super expression must either be null or a function"); t.prototype = Object.create(e && e.prototype, { constructor: { value: t, writable: !0, configurable: !0 } }), Object.defineProperty(t, "prototype", { writable: !1 }), e && newsletter_success_setPrototypeOf(t, e); }
|
||||
function newsletter_success_setPrototypeOf(t, e) { return newsletter_success_setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function (t, e) { return t.__proto__ = e, t; }, newsletter_success_setPrototypeOf(t, e); }
|
||||
function newsletter_success_defineProperty(e, r, t) { return (r = newsletter_success_toPropertyKey(r)) in e ? Object.defineProperty(e, r, { value: t, enumerable: !0, configurable: !0, writable: !0 }) : e[r] = t, e; }
|
||||
function newsletter_success_toPropertyKey(t) { var i = newsletter_success_toPrimitive(t, "string"); return "symbol" == newsletter_success_typeof(i) ? i : i + ""; }
|
||||
function newsletter_success_toPrimitive(t, r) { if ("object" != newsletter_success_typeof(t) || !t) return t; var e = t[Symbol.toPrimitive]; if (void 0 !== e) { var i = e.call(t, r || "default"); if ("object" != newsletter_success_typeof(i)) return i; throw new TypeError("@@toPrimitive must return a primitive value."); } return ("string" === r ? String : Number)(t); }
|
||||
// internal
|
||||
|
||||
// vendor
|
||||
|
||||
var PageBlogNewsletterSuccess = /*#__PURE__*/function (_BasePage) {
|
||||
function PageBlogNewsletterSuccess(router) {
|
||||
newsletter_success_classCallCheck(this, PageBlogNewsletterSuccess);
|
||||
return newsletter_success_callSuper(this, PageBlogNewsletterSuccess, [router]);
|
||||
}
|
||||
newsletter_success_inherits(PageBlogNewsletterSuccess, _BasePage);
|
||||
return newsletter_success_createClass(PageBlogNewsletterSuccess, [{
|
||||
key: "initialize",
|
||||
value: function initialize() {
|
||||
this.sharedInitialize();
|
||||
}
|
||||
}]);
|
||||
}(BasePage);
|
||||
newsletter_success_defineProperty(PageBlogNewsletterSuccess, "hash", hashPageBlogNewsletterSuccess);
|
||||
|
||||
;// ./static/js/pages/dog/home.js
|
||||
function dog_home_typeof(o) { "@babel/helpers - typeof"; return dog_home_typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (o) { return typeof o; } : function (o) { return o && "function" == typeof Symbol && o.constructor === Symbol && o !== Symbol.prototype ? "symbol" : typeof o; }, dog_home_typeof(o); }
|
||||
function dog_home_classCallCheck(a, n) { if (!(a instanceof n)) throw new TypeError("Cannot call a class as a function"); }
|
||||
@@ -8802,6 +8985,11 @@ function router_toPrimitive(t, r) { if ("object" != router_typeof(t) || !t) retu
|
||||
|
||||
// Blog
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
// Dog
|
||||
|
||||
|
||||
@@ -8861,6 +9049,26 @@ var Router = /*#__PURE__*/function () {
|
||||
name: 'PageBlogHome',
|
||||
module: PageBlogHome
|
||||
};
|
||||
this.pages[hashPageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients] = {
|
||||
name: 'PageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients',
|
||||
module: PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients
|
||||
};
|
||||
this.pages[hashPageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess] = {
|
||||
name: 'PageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess',
|
||||
module: PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients
|
||||
};
|
||||
this.pages[hashPageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress] = {
|
||||
name: 'PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress',
|
||||
module: PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress
|
||||
};
|
||||
this.pages[hashPageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025] = {
|
||||
name: 'PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025',
|
||||
module: PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025
|
||||
};
|
||||
this.pages[hashPageBlogNewsletterSuccess] = {
|
||||
name: 'PageBlogNewsletterSuccess',
|
||||
module: PageBlogNewsletterSuccess
|
||||
};
|
||||
// Dog
|
||||
this.pages[hashPageDogHome] = {
|
||||
name: 'PageDogHome',
|
||||
@@ -8966,6 +9174,26 @@ var Router = /*#__PURE__*/function () {
|
||||
var isPopState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
return _this.navigateToHash(hashPageBlogHome, isPopState);
|
||||
};
|
||||
this.routes[hashPageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients] = function () {
|
||||
var isPopState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
return _this.navigateToHash(hashPageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients, isPopState);
|
||||
};
|
||||
this.routes[hashPageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess] = function () {
|
||||
var isPopState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
return _this.navigateToHash(hashPageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess, isPopState);
|
||||
};
|
||||
this.routes[hashPageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress] = function () {
|
||||
var isPopState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
return _this.navigateToHash(hashPageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress, isPopState);
|
||||
};
|
||||
this.routes[hashPageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025] = function () {
|
||||
var isPopState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
return _this.navigateToHash(hashPageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025, isPopState);
|
||||
};
|
||||
this.routes[hashPageBlogNewsletterSuccess] = function () {
|
||||
var isPopState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
return _this.navigateToHash(hashPageBlogNewsletterSuccess, isPopState);
|
||||
};
|
||||
// Dog
|
||||
this.routes[hashPageDogHome] = function () {
|
||||
var isPopState = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
|
||||
|
||||
2
static/dist/js/main.bundle.js.map
vendored
2
static/dist/js/main.bundle.js.map
vendored
File diff suppressed because one or more lines are too long
@@ -5,7 +5,7 @@ import BasePage from "../base.js";
|
||||
|
||||
|
||||
export default class PageBlogArticle extends BasePage {
|
||||
static hash = hashPageBlogHome;
|
||||
static hash = null;
|
||||
|
||||
constructor(router) {
|
||||
super(router);
|
||||
@@ -0,0 +1,25 @@
|
||||
|
||||
// internal
|
||||
// import BasePage from "../base.js";
|
||||
import PageBlogHome from "./home.js";
|
||||
// external
|
||||
|
||||
|
||||
export default class PageBlogBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients extends PageBlogHome {
|
||||
static hash = hashPageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients;
|
||||
|
||||
constructor(router) {
|
||||
super(router);
|
||||
}
|
||||
|
||||
initialize() {
|
||||
this.sharedInitialize();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
|
||||
leave() {
|
||||
super.leave();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
|
||||
// internal
|
||||
// import BasePage from "../base.js";
|
||||
import PageBlogHome from "./home.js";
|
||||
// external
|
||||
|
||||
|
||||
export default class PageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess extends PageBlogHome {
|
||||
static hash = hashPageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess;
|
||||
|
||||
constructor(router) {
|
||||
super(router);
|
||||
}
|
||||
|
||||
initialize() {
|
||||
this.sharedInitialize();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
|
||||
leave() {
|
||||
super.leave();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,26 @@
|
||||
|
||||
// internal
|
||||
// import BasePage from "../base.js";
|
||||
import PageBlogHome from "./home.js";
|
||||
// external
|
||||
|
||||
|
||||
export default class PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress extends PageBlogHome {
|
||||
static hash = hashPageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress;
|
||||
|
||||
constructor(router) {
|
||||
super(router);
|
||||
}
|
||||
|
||||
initialize() {
|
||||
this.sharedInitialize();
|
||||
// this.hookupButtonsNav();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
|
||||
leave() {
|
||||
super.leave();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -0,0 +1,25 @@
|
||||
|
||||
// internal
|
||||
// import BasePage from "../base.js";
|
||||
import PageBlogHome from "./home.js";
|
||||
// external
|
||||
|
||||
|
||||
export default class PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025 extends PageBlogHome {
|
||||
static hash = hashPageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025;
|
||||
|
||||
constructor(router) {
|
||||
super(router);
|
||||
}
|
||||
|
||||
initialize() {
|
||||
this.sharedInitialize();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
|
||||
leave() {
|
||||
super.leave();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -14,6 +14,20 @@ export default class PageBlogHome extends BasePage {
|
||||
initialize() {
|
||||
this.sharedInitialize();
|
||||
// this.hookupButtonsNav();
|
||||
this.hookupFormNewsletter();
|
||||
this.hookupButtonSubmitFormContactUs();
|
||||
}
|
||||
|
||||
hookupButtonSubmitFormContactUs() {
|
||||
const button = document.querySelector('form input[type="submit"]');
|
||||
button.classList.add(flagButton);
|
||||
button.classList.add(flagButtonPrimary);
|
||||
button.innerText = 'Subscribe Now';
|
||||
}
|
||||
|
||||
hookupFormNewsletter() {
|
||||
let submitButton = document.querySelector('#submit');
|
||||
submitButton.innerText = 'Subscribe Now';
|
||||
}
|
||||
|
||||
leave() {
|
||||
|
||||
16
static/js/pages/blog/newsletter-success.js
Normal file
16
static/js/pages/blog/newsletter-success.js
Normal file
@@ -0,0 +1,16 @@
|
||||
// internal
|
||||
import BasePage from "../base.js";
|
||||
// vendor
|
||||
import { Altcha } from "../../vendor/altcha.js";
|
||||
|
||||
export default class PageBlogNewsletterSuccess extends BasePage {
|
||||
static hash = hashPageBlogNewsletterSuccess;
|
||||
|
||||
constructor(router) {
|
||||
super(router);
|
||||
}
|
||||
|
||||
initialize() {
|
||||
this.sharedInitialize();
|
||||
}
|
||||
}
|
||||
@@ -8,6 +8,11 @@ import PageApplyFoundingPartner from './pages/core/apply-founding-partner.js';
|
||||
import PageApplyFoundingPartnerSuccess from './pages/core/apply-founding-partner-success.js';
|
||||
// Blog
|
||||
import PageBlogHome from './pages/blog/home.js';
|
||||
import PageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients from './pages/blog/article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients.js';
|
||||
import PageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess from './pages/blog/article_how_to_scale_your_dog_training_business_from_25_to_100_plus_clients.js';
|
||||
import PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress from './pages/blog/article_the_science_behind_dog_training_assessments_how_to_track_real_progress.js';
|
||||
import PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025 from './pages/blog/article_why_every_professional_trainer_needs_a_command_dictionary_in_2025.js';
|
||||
import PageBlogNewsletterSuccess from './pages/blog/newsletter-success.js';
|
||||
// Dog
|
||||
import PageDogHome from './pages/dog/home.js';
|
||||
import PageDogCommandCategories from './pages/dog/command_categories.js';
|
||||
@@ -50,6 +55,11 @@ export default class Router {
|
||||
this.pages[hashPageApplyFoundingPartnerSuccess] = { name: 'PageApplyFoundingPartnerSuccess', module: PageApplyFoundingPartnerSuccess };
|
||||
// Blog
|
||||
this.pages[hashPageBlogHome] = { name: 'PageBlogHome', module: PageBlogHome };
|
||||
this.pages[hashPageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients] = { name: 'PageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients', module: PageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients };
|
||||
this.pages[hashPageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess] = { name: 'PageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess', module: PageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess };
|
||||
this.pages[hashPageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress] = { name: 'PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress', module: PageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress };
|
||||
this.pages[hashPageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025] = { name: 'PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025', module: PageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025 };
|
||||
this.pages[hashPageBlogNewsletterSuccess] = { name: 'PageBlogNewsletterSuccess', module: PageBlogNewsletterSuccess };
|
||||
// Dog
|
||||
this.pages[hashPageDogHome] = { name: 'PageDogHome', module: PageDogHome };
|
||||
this.pages[hashPageDogCommandCategories] = { name: 'PageDogCommands', module: PageDogCommandCategories };
|
||||
@@ -83,6 +93,11 @@ export default class Router {
|
||||
this.routes[hashPageApplyFoundingPartnerSuccess] = (isPopState = false) => this.navigateToHash(hashPageApplyFoundingPartnerSuccess, isPopState);
|
||||
// Blog
|
||||
this.routes[hashPageBlogHome] = (isPopState = false) => this.navigateToHash(hashPageBlogHome, isPopState);
|
||||
this.routes[hashPageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients] = (isPopState = false) => this.navigateToHash(hashPageBlogArticleHowToScaleYourDogTrainingBusinessFrom25To100PlusClients, isPopState);
|
||||
this.routes[hashPageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess] = (isPopState = false) => this.navigateToHash(hashPageBlogArticleHowToScaleYourDogTrainingBusinessFromSoloToMultiTrainerSuccess, isPopState);
|
||||
this.routes[hashPageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress] = (isPopState = false) => this.navigateToHash(hashPageBlogArticleTheScienceBehindDogTrainingAssessmentsHowToTrackRealProgress, isPopState);
|
||||
this.routes[hashPageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025] = (isPopState = false) => this.navigateToHash(hashPageBlogArticleWhyEveryProfessionalTrainerNeedsACommandDictionaryIn2025, isPopState);
|
||||
this.routes[hashPageBlogNewsletterSuccess] = (isPopState = false) => this.navigateToHash(hashPageBlogNewsletterSuccess, isPopState);
|
||||
// Dog
|
||||
this.routes[hashPageDogHome] = (isPopState = false) => this.navigateToHash(hashPageDogHome, isPopState);
|
||||
this.routes[hashPageDogCommandCategories] = (isPopState = false) => this.navigateToHash(hashPageDogCommandCategories, isPopState);
|
||||
|
||||
Reference in New Issue
Block a user