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
| <?xml version='1.0' encoding='UTF-8'?> | |
| <countries> | |
| <country code='af' handle='afghanistan' continent='asia' iso='4'>Afghanistan</country> | |
| <country code='al' handle='albania' continent='europe' iso='8'>Albania</country> | |
| <country code='dz' handle='algeria' continent='africa' iso='12'>Algeria</country> | |
| <country code='as' handle='american-samoa' continent='polynesia' iso='16'>American Samoa</country> | |
| <country code='ad' handle='andorra' continent='europe' iso='20'>Andorra</country> | |
| <country code='ao' handle='angola' continent='africa' iso='24'>Angola</country> | |
| <country code='ai' handle='anguilla' continent='north america' iso='660'>Anguilla</country> | |
| <country code='aq' handle='antarctica' continent='antarctica' iso='10'>Antarctica</country> |
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
| <?xml version="1.0" encoding="UTF-8"?> | |
| <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
| <xsl:output method="html" encoding="UTF-8" indent="yes" /> | |
| <xsl:template match="/"> | |
| <xsl:text disable-output-escaping="yes"><</xsl:text>!DOCTYPE html<xsl:text disable-output-escaping="yes">></xsl:text> | |
| <xsl:text disable-output-escaping="yes"><![CDATA[ | |
| <!--[if lt IE 7 ]> <html lang="en" class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | |
| <!--[if IE 7 ]> <html lang="en" class="no-js lt-ie9 lt-ie8"> <![endif]--> |
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
| // Insert into some kind of 'focus' action | |
| var parent = $(this).parent().parent('.fieldWrap'); // Target a wrapper | |
| // Reset active state | |
| $('.fieldWrap').removeClass('active'); | |
| // Add active state to current field | |
| parent.addClass('active'); |
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 | |
| $order_by = ''; // URL segment 2 | |
| $sort = 'desc'; // URL segment 3 | |
| $page = '1'; // URL segment 4 | |
| $data_total = ''; // Total number of entries | |
| $number_of_rows = 10; // Number of table rows per page | |
| $page_limit = 10; // Max pages shown in pagination at a time | |
| if($this->uri->segment(2)){ | |
| $order_by = $this->uri->segment(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
| { | |
| "bold_folder_labels": true, | |
| "caret_style": "wide", | |
| "color_scheme": "Packages/Alchemist/Alchemist.tmTheme", | |
| "draw_white_space": "selection", | |
| "enable_tab_scrolling": false, | |
| "ensure_newline_at_eof_on_save": true, | |
| "font_face": "DejaVu Sans Mono", | |
| "font_size": 12.5, | |
| "highlight_line": true, |
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
| <!-- Summary card https://dev.twitter.com/cards/types/summary --> | |
| <meta name="twitter:card" content="summary" /> | |
| <meta name="twitter:site" content="@thisisduo" /> | |
| <meta name="twitter:title" content="Utilising Twitter Cards for better social engagement" /> | |
| <meta name="twitter:description" content="Twitter card reference guide." /> | |
| <meta name="twitter:image" content="http://shot.li/cage/300/300/" /> | |
| <meta name="twitter:url" content="http://duo.agency/blog/post/Q9GZ6/" /> | |
| <!-- Summary card with large image https://dev.twitter.com/cards/types/summary-large-image --> | |
| <meta name="twitter:card" content="summary_large_image" /> |
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
| // Configure your plugins | |
| plugins: { | |
| stylus: { | |
| plugins: ['jeet'] | |
| }, | |
| babel: { | |
| // Do not use ES6 compiler in vendor code | |
| ignore: [/vendor/] | |
| } | |
| }, |
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
| // Configure your plugins | |
| plugins: { | |
| babel: { | |
| // Do not use ES6 compiler in vendor code | |
| ignore: [/vendor/] | |
| } | |
| }, |
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
| <!DOCTYPE html> | |
| <html lang="en"> | |
| <head> | |
| <meta charset="utf-8" /> | |
| <meta name="viewport" content="width=device-width, initial-scale=1" /> | |
| <meta name="theme-color" content="#222222" /> | |
| <!-- Meta --> | |
| <title>Title</title> |
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
| // Includes | |
| @import 'jeet' | |
| @import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,700italic,400italic') | |
| // Base | |
| @import '_000-reset' | |
| @import '_001-colors' | |
| @import '_002-typography' | |
| @import '_003-global' |
NewerOlder