hello.html 776 B

12345678910111213141516171819202122232425262728
  1. {% extends "base.html" %}
  2. {% block title %} 欢迎 {% endblock %}
  3. {% block style %}
  4. {{ super() }}
  5. <link href="{{ url_for('static', filename='styles/index/hello.css') }}" rel="stylesheet">
  6. <style>
  7. body {
  8. background-image: url("{{ url_for('oss.get_page', name="bg-img.jpg") }}");
  9. overflow-y: hidden;
  10. overflow-x: hidden;
  11. }
  12. </style>
  13. {% endblock %}
  14. {% block nav %} {% endblock %}
  15. {% block context %}
  16. <section id="title-section">
  17. <h1 id="title-1"> 欢迎,这里是{{ blog_name }} </h1>
  18. <form method="get" action=" {{ url_for('base.index_page') }} ">
  19. <input id="btn" type="submit" value="进入">
  20. </form>
  21. </section>
  22. {% endblock %}
  23. {% block footer %} {% endblock %}