partsdb

electronic parts inventory
git clone https://git.e1e0.net/partsdb.git
Log | Files | Refs | README | LICENSE

index.html (449B)


      1 <!doctype html>
      2 
      3 <html lang="en">
      4 <head>
      5   <meta charset="utf-8">
      6 
      7   <title>partsdb category index</title>
      8   <meta name="description" content="partsdb category index">
      9   <meta name="author" content="e1e0">
     10 
     11   <link rel="stylesheet" href="style.css?v=1.0">
     12 </head>
     13 <body>
     14   <h1>PartsDB</h1>
     15   <p>Categories:</p>
     16   <ul>
     17     {% for c in cat %}
     18       <li><a href="cat_list_{{ c.id }}.html">{{ c.name }}</a></li>
     19     {% endfor %}
     20   </ul>
     21 </body>
     22 </html>