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
{ | |
"success": true, | |
"lat": "52.370216", | |
"lng": "4.895168" | |
} |
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
<?php | |
/** | |
* @author J O S H M O T O <https://github.com/joshmoto> | |
*/ | |
class Vite { | |
/** | |
* Flag to determine whether hot server is active. | |
* Calculated when Vite::initialise() is called. |
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
<?php | |
/** | |
* @author Josh Cranwell <[email protected]> | |
*/ | |
class Vite { | |
/** | |
* Flag to determine whether hot server is active. | |
* Calculated when Vite::initialise() is called. |
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
<?php | |
use JetBrains\PhpStorm\NoReturn; | |
/** | |
* @author Josh Cranwell <[email protected]> | |
* @copyright The Sweet People | |
* @version 1.0 | |
* @link https://www.thesweetpeople.com/ | |
* @since March 2023 |
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
<?php | |
use JetBrains\PhpStorm\NoReturn; | |
/** | |
* @author Josh Cranwell <[email protected]> | |
* @copyright The Sweet People | |
* @version 1.0 | |
* @link https://www.thesweetpeople.com/ | |
* @since 23 March 2023 |
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
/db | |
/plugins | |
/uploads | |
/logs |
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
@mixin respond($breakpoint:false) { | |
@if $breakpoint == 'phone' { | |
@media only screen and (max-width: 37.5em) { | |
@content | |
} | |
} | |
@else if $breakpoint == 'tab-port' { | |
@media only screen and (max-width: 56.25em) { |
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
@import url("https://fonts.googleapis.com/css2?family=Open:ital,wght@0,300;0,700;1,400&display=swap") | |
:root { | |
--color-grey-dark: #202326; | |
--color-green: #42b680; | |
--color-purple: #7288da; | |
} | |
* { | |
box-sizing: border-box; |
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
<?php | |
/** | |
* @author joshmoto <https://stackoverflow.com/users/888894/joshmoto> | |
*/ | |
class DynamicRouter { | |
protected static | |
/** |
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
<div class="modal fade" id="ajaxModalPopup" tabindex="-1" aria-labelledby="ajaxModalPopupLabel" aria-hidden="true"> | |
<div class="modal-dialog"> | |
<div class="modal-content"> | |
<div class="modal-header"> | |
<h5 class="modal-title" id="ajaxModalPopupLabel">Modal title</h5> | |
<button type="button" class="close" data-dismiss="modal" aria-label="Close"> | |
<span aria-hidden="true">×</span> | |
</button> | |
</div> | |
<div class="modal-body"> |
NewerOlder