瀏覽代碼

Updated: using minified versions of foundation, jquery.

Steve Thielemann 4 年之前
父節點
當前提交
d8d198fea5
共有 3 個文件被更改,包括 4 次插入3 次删除
  1. 1 0
      static/js/vendor/jquery-3.5.1.min.js
  2. 2 2
      templates/base.html
  3. 1 1
      up.sh

文件差異過大導致無法顯示
+ 1 - 0
static/js/vendor/jquery-3.5.1.min.js


+ 2 - 2
templates/base.html

@@ -17,9 +17,9 @@
       </div>  
 {% block content %}{% endblock %}
     </div>
-    <script src="{{ url_for( 'static', filename='js/vendor/jquery.js') }}"></script>
+    <script src="{{ url_for( 'static', filename='js/vendor/jquery-3.5.1.min.js') }}"></script>
     <script src="{{ url_for( 'static', filename='js/vendor/what-input.js') }}"></script>
-    <script src="{{ url_for( 'static', filename='js/vendor/foundation.js') }}"></script>
+    <script src="{{ url_for( 'static', filename='js/vendor/foundation.min.js') }}"></script>
     <script src="{{ url_for( 'static', filename='js/app.js') }}"></script>
     <footer class="large-12 callout">
     BZ&amp;BZ BBS

+ 1 - 1
up.sh

@@ -1,6 +1,6 @@
 #!/bin/bash
 
-gunicorn messages:app
+gunicorn messages:app -b 0.0.0.0:8000 --reload
 
 # FLASK_APP=messages.py flask run
 

部分文件因文件數量過多而無法顯示