Search
 
SCRIPT & CODE EXAMPLE
 

HTML

what should base_generic.html look like

<!DOCTYPE html>
<html lang="en">
<head>
  {% block title %}<title>Local Library</title>{% endblock %}
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bootstrap@4.5.3/dist/css/bootstrap.min.css" integrity="sha384-TX8t27EcRE3e/ihU7zmQxVncDAy5uIKz4rEkgIXeMed4M0jlfIDPvg6uqKI2xXr2" crossorigin="anonymous">
  <!-- Add additional CSS in static file -->
  {% load static %}
  <link rel="stylesheet" href="{% static 'css/styles.css' %}">
</head>
<body>
  <div class="container-fluid">
    <div class="row">
      <div class="col-sm-2">
      {% block sidebar %}
        <ul class="sidebar-nav">
          <li><a href="{% url 'index' %}">Home</a></li>
          <li><a href="">All books</a></li>
          <li><a href="">All authors</a></li>
        </ul>
     {% endblock %}
      </div>
      <div class="col-sm-10 ">{% block content %}{% endblock %}</div>
    </div>
  </div>
</body>
</html>
Comment

PREVIOUS NEXT
Code Example
Html :: jquery loop print html() 
Html :: h1 html 
Html :: can i write php code in html file 
Html :: selenium click not working 
Html :: on phone option html 
Html :: how to stop moving text in html when you hover over it 
Html :: html onkeyup set value 
Html :: how to make common header and footer in html 
Html :: tradingview lightweight charts cdn 
Html :: viewport 
Html :: how to set a date for type date inpt 
Html :: in html the color for red 
Html :: html make text bold 
Html :: html picture tag 
Html :: how to create animated text in html 
Html :: how to align select in table cell center html 
Html :: same form two submits 
Html :: barra di ricerca in html 
Html :: convert html datetime-local to java LocalDateTime 
Html :: html new line 
Html :: can se have same id for radio button in html 
Html :: python download html as string 
Html :: html mark tag 
Html :: bootstarp cards 
Html :: html ecrire en gras 
Html :: defer in html 
Html :: Cambiar el texto de label usando JavaScript 
Html :: how to take an aimage in html and css 
Html :: email link with cc html 
Html :: restrict file upload type angular 
ADD CONTENT
Topic
Content
Source link
Name
3+2 =