Pug - это препроцессор HTML и шаблонизатор, который был написан на JavaScript для Node.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
eyJwcmVzZXQiOiJnZXRob3N0YnlhZGRyIiwidmFsdWUiOnsicHJlc2V0IjoiZ2V0 | |
aG9zdGJ5YWRkciIsInBhcnNlcnMiOltbIk5ldDo6RE5TIiwiZGVmYXVsdCIseyJ0 | |
eXBlIjoib3ZlcnJpZGUiLCJpZCI6InF1ZXJ5X3R5cGUiLCJ2YWx1ZSI6IlBUUiJ9 | |
LHsidHlwZSI6Im92ZXJyaWRlIiwiaWQiOiJzZXJ2ZXIiLCJ2YWx1ZSI6IjguOC44 | |
LjgsIDE1Ni4xNTQuNzAuMSwgNjQuNi42NC42LCA4LjI2LjU2LjI2LCAxLjAuMC4x | |
LCA3Ny44OC44LjEsIDE5OC4xMDEuMjQyLjcyLCAyMDguNjcuMjIyLjIsIDguOC40 | |
LjQsIDY0LjYuNjUuNiwgNzcuODguOC44LCAxNTYuMTU0LjcxLjEsIDk0LjE0MC4x | |
NC4xNDAsIDE3Ni4xMDMuMTMwLjEzMCwgOTEuMjM5LjEwMC4xMDAsIDguMjAuMjQ3 | |
LjIwLCAxODUuMjI4LjE2OC4xNjgsIDIwOC42Ny4yMjAuMiwgMTQ5LjExMi4xMTIu | |
MTAsIDk0LjE0MC4xNC4xNDEsIDE4NS4yMjguMTY5LjE2OCwgMS4xLjEuMSwgOS45 |
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
/** | |
* BitMEX JAZZ BEEP | |
* | |
* Aural indication of XBTUSD price movements via BitMEX websocket realtime-trade data. | |
* Uses the blues scale to add some funk to your trading. | |
* | |
*/ | |
var options = { |
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
# -*- coding:utf-8 -*- | |
# | |
# Copyright (C) 2013 Carlos Jenkins <[email protected]> | |
# | |
# This program is free software: you can redistribute it and/or modify | |
# it under the terms of the GNU General Public License as published by | |
# the Free Software Foundation, either version 3 of the License, or | |
# (at your option) any later version. | |
# | |
# This program is distributed in the hope that it will be useful, |
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
/** | |
* Shortcode for WP function get_template_directory_uri(); | |
*/ | |
// Add Shortcode | |
function bfp_get_template_directory() { | |
$directory = get_template_directory_uri(); | |
// Code | |
return $directory; | |
} |