This file contains hidden or 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
| --- | |
| baseURL: https://example.com | |
| languageCode: en-us | |
| title: Ryan Dejaeghers | |
| pygmentsstyle: monokai | |
| theme: novela | |
| permalinks: | |
| post: /:title/ | |
| paginate: 6 | |
| social: |
This file contains hidden or 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
| --- | |
| baseURL: https://example.com | |
| languageCode: en-us | |
| title: Ryan Dejaeghers | |
| pygmentsstyle: monokai | |
| theme: novela | |
| permalinks: | |
| post: /:title/ | |
| paginate: 6 | |
| social: |
This file contains hidden or 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
| // REQUIREMENTS | |
| // User should be able to set the minimum required price | |
| // User should be able to adjust the error message | |
| // User should be able to change the currency symbol to match their country | |
| // The error message should be temporarily displayed if they are below the order minimum | |
| // The error message should display the required minimum amount | |
| // The error message should disappear once they are above the order minimum |
This file contains hidden or 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 is the CSS to change the fill cover on hover/not hover. Using :not it is possible to make changes | |
| #thing svg:not(:hover) { | |
| fill:rgba(31,31,31,.4); | |
| transition:fill 170ms ease-in-out; | |
| } | |
| <?xml version="1.0"?><svg fill="#000000" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 50 50" width="50px" height="50px"> <path d="M41,4H9C6.243,4,4,6.243,4,9v32c0,2.757,2.243,5,5,5h32c2.757,0,5-2.243,5-5V9C46,6.243,43.757,4,41,4z M37.006,22.323 c-0.227,0.021-0.457,0.035-0.69,0.035c-2.623,0-4.928-1.349-6.269-3.388c0,5.349,0,11.435,0,11.537c0,4.709-3.818,8.527-8.527,8.527 s-8.527-3.818-8.527-8.527s3.818-8.527,8.527-8.527c0.178,0,0.352,0.016,0.527,0.027v4.202c-0.175-0.021-0.347-0.053-0.527-0.053 c-2.404,0-4.352,1.948-4.352,4.352s1.948,4.352,4.352,4.352s4.527-1.894,4.527-4.298c0-0.095,0.042-19.594,0.042-19.594h4.016 c0.378,3.591,3.277,6.425,6.901,6.685V22.323z"/></svg> | |
| */ |
This file contains hidden or 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
| <script> | |
| (function(){ | |
| var comingSoonText = document.querySelector('#sqs-slash-page-header'); | |
| comingSoonText.innerHTML = `coming <span class="really">(really)</span> soon`; | |
| }()); | |
| </script> | |
This file contains hidden or 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
| .grid { | |
| display: grid; | |
| } | |
| .col-span-1 { | |
| grid-column: span 1; | |
| } | |
| .col-span-2 { | |
| grid-column: span 2; |
This file contains hidden or 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
| /* | |
| Use this to easily add a fading effect to elements using IntersectionObserver, | |
| intersectionObserver will "watch" for elements visibility on the page | |
| */ | |
| (function () { | |
| myImgs = document.querySelectorAll('img'); | |
| observer = new IntersectionObserver(entries => { | |
| entries.forEach(entry => { |
This file contains hidden or 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
| /* | |
| Add Icons to HTML Links JavaScript | |
| Demo | |
| addHeaderHTML(getLink('/contact'),'before','<span>Cool</span>') | |
| addHeaderHTML(getLink('/contact'),'before','<span>Cool</span>') | |
| */ |
This file contains hidden or 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
| function onScroll(e) { | |
| console.log(e); | |
| console.log('yes'); | |
| } | |
| var observer = new IntersectionObserver(entries => { | |
| console.log(entries) | |
| entries.forEach(entry => { |
OlderNewer