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
| mixin ga(id) | |
| //- Pass your ga id, as attribute, eg. +ga('yourid12345') | |
| script. | |
| window.ga = function () { ga.q.push(arguments) }; ga.q = []; ga.l = +new Date; | |
| ga('create', '!{id}', 'auto'); ga('set','transport','beacon'); ga('send', 'pageview') | |
| script(src='https://www.google-analytics.com/analytics.js') |
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
| mixin svgIcon(iconId) | |
| i(class="icon icon--"+iconId) | |
| svg.icon__svg | |
| use(xlink:href='#'+iconId) |
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
| mixin ga(id) | |
| script(async='', src='https://www.googletagmanager.com/gtag/js?id='+id) | |
| script. | |
| window.dataLayer = window.dataLayer || []; | |
| function gtag(){dataLayer.push(arguments);} | |
| gtag('js', new Date()); | |
| gtag('config', '!{id}') |
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
| const tree = { | |
| value: 1, | |
| children: [ | |
| { | |
| value: 10, | |
| children: [ | |
| { | |
| value: 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
| [Desktop Entry] | |
| Version=1.0 | |
| Name=Firefox Developer Edition | |
| Comment=Firefox Developer Edition | |
| Exec=/opt/firefox-dev/firefox | |
| # Path=/opt/firefox-dev/firefox | |
| Icon=/opt/firefox-dev/browser/chrome/icons/default/default128.png | |
| Terminal=false | |
| Type=Application | |
| Categories=Browser;Development; |
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
| testingtesting |
OlderNewer