Skip to content
Snippets Groups Projects
home.html 302 B
Newer Older
  • Learn to ignore specific revisions
  • Mia Wang's avatar
    Mia Wang committed
    {% extends "basic.html" %}
    {% block title%}Home{% endblock %}
    {% block body %}
    Search some literature:
    <form action="/search_result">
      <label for="search_query">Query:</label>
      <input type="text" id="search_query" name="search_query"><br>
    
      <input type="submit">
    </form>
    
    {% endblock %}