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
<?xml version="1.0" encoding="utf-8" standalone="yes"?> | |
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"> | |
<url> | |
<loc>https://httpstat.us/100</loc> | |
</url> | |
<url> | |
<loc>https://httpstat.us/101</loc> | |
</url> | |
<url> | |
<loc>https://httpstat.us/102</loc> |
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
/* -------------------------------------------------------------------------- */ | |
/* Transition */ | |
/* -------------------------------------------------------------------------- */ | |
@mixin transition($value: all 200ms linear) { | |
-webkit-transition: $value; | |
-moz-transition : $value; | |
-ms-transition : $value; | |
-o-transition : $value; | |
transition : $value; | |
} |
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
################################################################################ | |
# Community Packages | |
################################################################################ | |
kadira:blaze-layout # Layout Manager for Blaze (works well with FlowRouter) | |
kadira:flow-router # Carefully designed client side router for Meteor | |
meteorhacks:fast-render # Render your app before the DDP connection comes alive | |
alanning:roles # Authorization package for Meteor - user roles | |
aldeed:collection2 # Automatic validation of the collection operations |
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
<?xml version="1.0"?> | |
<layout> | |
<default> | |
<!--Head Block Modifications For All Pages--> | |
<reference name="head"> | |
<!-- Add CSS and JS, Files From Skin Folder --> | |
<action method="addItem"><type>skin_css</type><name>css/styles.css</name></action> | |
<action method="addItem"><type>skin_js</type><name>js/script.js</name></action> | |
<!--Remove CSS and JS, Files From Skin Folder--> |