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 setup> | |
import LinkItem from './LinkItem'; | |
const links = [ | |
{ | |
url: 'https://google.com', | |
text: 'Google', | |
isDisabled: false, | |
}, | |
{ |
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
// IE 10+ | |
@mixin ie-only() { | |
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) { | |
@content; | |
} | |
} | |
// IE Edge 10+ { | |
@mixin ie-edge-only { | |
@supports (-ms-accelerator:true) or (-ms-ime-align:auto) { |
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
/** | |
* The following must be inserted before the | |
* closing head tag. | |
*/ | |
var scripts = [ '/js/script.js', '/js/script2.js' ]; | |
var stylesheets = [ '/css/styles.css', '/css/styles.css' ]; | |
// Load stylesheets | |
for (var i=0; i < stylesheets.length; i++) { | |
var link = document.createElement('link'); |
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
<?php | |
//set timezone (change this to your timezone) | |
date_default_timezone_set("America/Chicago"); | |
class Post { | |
public $text; | |
public $date; | |
public $title; | |
public $link; |