Created
July 12, 2017 19:13
-
-
Save rawsh/6ba8b97d7da8e7f0d3ec194daef38454 to your computer and use it in GitHub Desktop.
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
| <body style="background-image: url('{% if market.background %}{{ market.background.url }}{% endif %}')"> | |
| <!-- container --> | |
| <div class="container"> | |
| <!-- header --> | |
| {% include header_template %} | |
| <!-- /header --> | |
| <!-- static navbar --> | |
| {% include navbar_template %} | |
| <!-- /static navbar --> | |
| <!-- content --> | |
| <div class="row"> | |
| <!-- page --> | |
| <div class="col-lg-8 col-xs-12"> | |
| {% include alerts_template %} | |
| {% if market.plan == 1 %} | |
| <div class="panel panel-default"> | |
| <div class="panel-body" style="overflow: hidden;"> | |
| <script type="text/javascript"><!-- | |
| google_ad_client = "ca-pub-4435275545393266"; | |
| /* MarketTop */ | |
| google_ad_slot = "6171521691"; | |
| google_ad_width = 728; | |
| google_ad_height = 90; | |
| //--> | |
| </script> | |
| <script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> | |
| </div> | |
| </div> | |
| {% endif %} | |
| {% block page %} | |
| {% endblock %} | |
| {% if market.plan == 1 %} | |
| <div class="panel panel-default"> | |
| <div class="panel-body" style="overflow: hidden;"> | |
| <script type="text/javascript"><!-- | |
| google_ad_client = "ca-pub-4435275545393266"; | |
| /* MarketBottom */ | |
| google_ad_slot = "5991992094"; | |
| google_ad_width = 728; | |
| google_ad_height = 90; | |
| //--> | |
| </script> | |
| <script type="text/javascript"src="http://pagead2.googlesyndication.com/pagead/show_ads.js"></script> | |
| </div> | |
| </div> | |
| {% endif %} | |
| </div> | |
| <!-- /page --> | |
| <!-- modules --> | |
| <div class="col-lg-4 hidden-xs"> | |
| {% include modules_template %} | |
| </div> | |
| <!-- /modules --> | |
| </div> | |
| <!-- /content --> | |
| <!-- footer --> | |
| {% include footer_template %} | |
| <!-- /footer --> | |
| </div> | |
| <!-- /container --> | |
| <!-- Bootstrap core JavaScript | |
| ================================================== --> | |
| <!-- Placed at the end of the document so the pages load faster --> | |
| <script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script> | |
| <script src="{% static 'js/bootstrap.min.js' %}"></script> | |
| <script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.12.2/js/bootstrap-select.min.js"></script> | |
| <script src="https://js.stripe.com/v2/"></script> | |
| <script src="{% static 'new_panel/js/market.js' %}"></script> | |
| <!-- User added javascript files --> | |
| {% for javascript in javascript_files %} | |
| <script type="text/javascript" src="{{ javascript }}"></script> | |
| {% endfor %} | |
| <!-- end of user added javascript --> | |
| {% include modal_template %} | |
| </body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment