diff options
| author | esquizo <esquizo+noreply@esquizo.net> | 2026-06-14 09:42:30 -0300 |
|---|---|---|
| committer | esquizo <esquizo+noreply@esquizo.net> | 2026-06-14 09:42:30 -0300 |
| commit | fc18663266a597264e3129b45ebe35ea95971f8d (patch) | |
| tree | e20b6d93e86f9177a5e19266fdce320939496425 | |
| parent | 3a5e57d8ae10dfff7cbd3e10bf99997a1f41f745 (diff) | |
trocado div navbar para nav
| -rw-r--r-- | static/style.css | 2 | ||||
| -rw-r--r-- | templates/base.m4 | 4 |
2 files changed, 4 insertions, 2 deletions
diff --git a/static/style.css b/static/style.css index 6595584..91362c0 100644 --- a/static/style.css +++ b/static/style.css @@ -71,6 +71,8 @@ pre { } .navbar { + display: block; + padding-top: 5px; } .navbar ul { diff --git a/templates/base.m4 b/templates/base.m4 index 3ddd40a..17b1713 100644 --- a/templates/base.m4 +++ b/templates/base.m4 @@ -18,14 +18,14 @@ </header> <main> - <div class="navbar"> + <nav class="navbar"> <ul> <li><a href="/">Home</a></li> <li><a href="/about.html">Quem eu sou?</a></li> <li><a href="/blog">Blog</a></li> <li><a href="https://git.esquizo.net/">Git</a></li> </ul> - </div> + </nav> <div class="content"> PAGECONTENT |
