-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add BUSD stable coin and code refactor (#296)
* Add BUSD stable coin and code refactor * Add pair LTO/BUSD * Codefix * Templates static folder code refactor * Templates static folder code refactor * Update CHANGELOG.md
- Loading branch information
Showing
28 changed files
with
170 additions
and
110 deletions.
There are no files selected for viewing
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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,12 +4,12 @@ | |
<meta charset="UTF-8"> | ||
<title>XTCryptoSignals - {% block title %}{% endblock %}</title> | ||
<meta name="viewport" content="width=device-width, initial-scale=1"> | ||
<link rel="icon" type="image/png" href="/static/imgs/favicon-16x16.png" sizes="16x16"> | ||
<link rel="icon" type="image/png" href="/static/imgs/favicon-32x32.png" sizes="32x32"> | ||
<link rel="icon" type="image/png" href="{{url_for('static', filename='imgs/favicon-16x16.png')}}" sizes="16x16"> | ||
<link rel="icon" type="image/png" href="{{url_for('static', filename='imgs/favicon-32x32.png')}}" sizes="32x32"> | ||
<!--open graph protocol --> | ||
<meta name="title" property="og:title" content="XTCryptoSignals"/> | ||
<meta property="og:type" content="Crypto Platform Data Tools"> | ||
<meta name="image" property="og:image" content="//xtcryptosignals.com/static/imgs/logo_transparent.png"/> | ||
<meta name="image" property="og:image" content="//xtcryptosignals.com/{{url_for('static', filename='imgs/logo_transparent.png')}}"/> | ||
<meta name="description" property="og:description" content="Cryptocurrencies price data collection, price tickers, signals notifications, charts and automatic trading."/> | ||
<meta property="og:url" content="//xtcryptosignals.com"/> | ||
<meta name="author" content="Paulo Antunes"> | ||
|
@@ -19,11 +19,11 @@ | |
<link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css" type="text/css"> | ||
<link rel="stylesheet" href="//code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css" type="text/css"> | ||
<link rel="stylesheet" href="//unpkg.com/[email protected]/nprogress.css" type="text/css"> | ||
<link rel="stylesheet" href="/static/css/skeleton/normalize.css" type="text/css"> | ||
<link rel="stylesheet" href="/static/css/skeleton/skeleton.css" type="text/css"> | ||
<link rel="stylesheet" href="/static/css/skeleton/custom.css" type="text/css"> | ||
<link rel="stylesheet" href="/static/css/custom.css" type="text/css"> | ||
<link rel="stylesheet" href="/static/css/darkmode.css" type="text/css"> | ||
<link rel="stylesheet" href="{{url_for('static', filename='css/skeleton/normalize.css')}}" type="text/css"> | ||
<link rel="stylesheet" href="{{url_for('static', filename='css/skeleton/skeleton.css')}}" type="text/css"> | ||
<link rel="stylesheet" href="{{url_for('static', filename='css/skeleton/custom.css')}}" type="text/css"> | ||
<link rel="stylesheet" href="{{url_for('static', filename='css/custom.css')}}" type="text/css"> | ||
<link rel="stylesheet" href="{{url_for('static', filename='css/darkmode.css')}}" type="text/css"> | ||
<!-- js --> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/socket.io/3.0.4/socket.io.min.js" type="text/javascript"></script> | ||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js" type="text/javascript"></script> | ||
|
@@ -36,12 +36,12 @@ | |
<script src="//cdnjs.cloudflare.com/ajax/libs/moment-timezone/0.5.28/moment-timezone-with-data-10-year-range.min.js" type="text/javascript"></script> | ||
<script src="//unpkg.com/[email protected]/nprogress.js" type="text/javascript"></script> | ||
<!-- local --> | ||
<script src="/static/js/modals.js" type="text/javascript"></script> | ||
<script src="/static/js/actions.js" type="text/javascript"></script> | ||
<script src="/static/js/formatters.js" type="text/javascript"></script> | ||
<script src="/static/js/notify/styles/bootstrap.js" type="text/javascript"></script> | ||
<script src="/static/js/jquery.key.js" type="text/javascript"></script> | ||
<script src="/static/js/actions.key.js" type="text/javascript"></script> | ||
<script src="{{url_for('static', filename='js/modals.js')}}" type="text/javascript"></script> | ||
<script src="{{url_for('static', filename='js/actions.js')}}" type="text/javascript"></script> | ||
<script src="{{url_for('static', filename='js/formatters.js')}}" type="text/javascript"></script> | ||
<script src="{{url_for('static', filename='js/notify/styles/bootstrap.js')}}" type="text/javascript"></script> | ||
<script src="{{url_for('static', filename='js/jquery.key.js')}}" type="text/javascript"></script> | ||
<script src="{{url_for('static', filename='js/actions.key.js')}}" type="text/javascript"></script> | ||
|
||
<!-- custom --> | ||
<script type="text/javascript"> | ||
|
@@ -54,6 +54,10 @@ | |
} | ||
</script> | ||
|
||
<script type="text/javascript"> | ||
const static_folder = "{{url_for('static', filename='imgs/logos/')}}" | ||
</script> | ||
|
||
<script type="text/javascript"> | ||
const csrf_token = "{{ csrf_token() }}"; | ||
$.ajaxSetup({ | ||
|
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
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
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
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
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
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
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
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
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
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
Oops, something went wrong.