-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v6 reorganization and dev environment update
moved to cdn for third party assets, changed project structure to have src and dist directoires, moved to npm scripts based dev environment dropping the gulp dependencies
- Loading branch information
1 parent
70d1c8b
commit 2ad0df4
Showing
108 changed files
with
5,480 additions
and
56,339 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -1 +1,2 @@ | ||
node_modules | ||
node_modules | ||
.DS_Store |
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 |
---|---|---|
|
@@ -6,7 +6,6 @@ node_js: | |
install: npm install | ||
script: | ||
- npm test | ||
- gulp | ||
cache: | ||
directories: | ||
- node_modules | ||
|
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
This file was deleted.
Oops, something went wrong.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
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
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 |
---|---|---|
|
@@ -11,7 +11,7 @@ | |
$message = strip_tags(htmlspecialchars($_POST['message'])); | ||
|
||
// Create the email and send the message | ||
$to = "[email protected]"; // Add your email address inbetween the "" replacing [email protected] - This is where the form will send a message to. | ||
$to = "[email protected]"; // Add your email address in between the "" replacing [email protected] - This is where the form will send a message to. | ||
$subject = "Website Contact Form: $name"; | ||
$body = "You have received a new message from your website contact form.\n\n"."Here are the details:\n\nName: $name\n\nEmail: $email\n\nPhone: $phone\n\nMessage:\n$message"; | ||
$header = "From: [email protected]\n"; // This is the email address the generated message will be from. We recommend using something like [email protected]. | ||
|
File renamed without changes.
Oops, something went wrong.
2ad0df4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Awesome :)
was wondering if I should write some pug templates for the theme,
and now I've noticed that a new version includes build-in pug support!
Thank you 👍
P.s.
Are there any plans to support "simple" jinja templates as well?
looks like https://github.com/mozilla/nunjucks allows to render jinja-like templating syntax -
https://mozilla.github.io/nunjucks/faq.html#can-i-use-the-same-templates-between-nunjucks-and-jinja2-what-are-the-differences
https://mozilla.github.io/nunjucks/templating.html
This may be very attractive to BE developers that would like to experiment with bootstrap,
since most of them are using flask/django, etc frameworks that use jinja templating engine.
Thanks.
2ad0df4
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yes! The new format uses Pug to organize all of the HTML, and we'll be making more improvements as time goes on. Moving to Pug will allow us to easily handle multi-page themes as well!