partsdb

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

index.html (1233B)


      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="icon" type="image/png" sizes="32x32" href="icons8-transistor-office-m-32.png">
     12   <link rel="icon" type="image/png" sizes="16x16" href="icons8-transistor-office-m-16.png">
     13   <link rel="stylesheet" href="style.css?v=1.0">
     14 </head>
     15 <body>
     16   <div class="list-container">
     17     <div class="index-logo">
     18         <img src="icons8-transistor-80.png" alt="transistor icon"/>
     19     </div>
     20     <div class="index-title">
     21           <h1>PartsDB</h1>
     22           <p>Because organization is futile ...</p>
     23     </div>
     24     <div class="category-list">
     25       <p>By category:</p>
     26       <ul>
     27         {% for c in cat %}
     28           <li><a href="cat_list_{{ c.id }}.html">{{ c.name }}</a></li>
     29         {%- endfor %}
     30       </ul>
     31     </div>
     32     <div class="storage-list">
     33       <p>By storage:</p>
     34       <ul>
     35         {% for s in sto %}
     36           <li><a href="storage_{{ s.id }}.html">{{ s.name }}</a></li>
     37         {%- endfor %}
     38       </ul>
     39     </div>
     40   </div>
     41   <div class="footer">
     42     Last generated: {{ time_generated }}
     43   </div>
     44 </body>
     45 </html>