diff options
-rw-r--r-- | index.html | 39 | ||||
-rw-r--r-- | post.html | 41 | ||||
-rw-r--r-- | src/scss/styles/_base.scss | 4 |
3 files changed, 56 insertions, 28 deletions
@@ -29,21 +29,31 @@ </div> </aside> <main class="main"> - <nav> - <a href="#">Home</a> - <a href="#">Archives</a> - <a href="#">Categories</a> - <a href="#">Tags</a> - <a href="#">Atom</a> - </nav> + <header itemscope itemtype="https://schema.org/WPHeader"> + <nav> + <a href="#">Home</a> + <a href="#">Archives</a> + <a href="#">Categories</a> + <a href="#">Tags</a> + <a href="#">Atom</a> + </nav> + </header> <article itemscope itemtype="https://schema.org/CreativeWork"> <header> <h2><a href="#">Simple 1.0.0</a></h2> - <time class="entry-date published" itemprop="datePublished" datetime="2021-05-08T05:00:00+02:00"> - <small> - Posted on November 9, 2021 in <a href="#">News</a> - </small> - </time> + <small> + <time class="entry-date published" itemprop="datePublished" datetime="2021-05-08T05:00:00+02:00"> + <span> + Posted on November 9, 2021 in <a href="#">News</a> + </span> + </time> by + <span itemprop='author' itemscope itemtype="https://schema.org/Person"> + <span itemprop="name"> + <a href="#" itemprop="url" + title="Article author">Anonymous</a> + </span> + </span> + </small> </header> <div> <div><p><a href="https://hgit.conocimientoslibres.ga/software/simple.git">Simple theme</a> 1.0.0 first release!</p> @@ -70,9 +80,12 @@ </div> <hr> </article> - <footer class="credits"> + <footer class="credits" itemscope itemtype="https://schema.org/WPFooter"> <p>© 2021 - This work is licensed under <a href="https://www.gnu.org/licenses/agpl-3.0.txt" rel="license"> <abbr title="GNU Affero General Public License version 3 or later"> GNU AGPL-3 </abbr></a> | Mode: <label for="theme-switch" class="switch-label"></label></p> + <p> + <a itemprop="license" href="/librejs.html" data-jslicense="1">Licencias de JavaScript</a> + </p> </footer> </main> </div> @@ -29,21 +29,31 @@ </div> </aside> <main class="main"> - <nav> - <a href="#">Home</a> - <a href="#">Archives</a> - <a href="#">Categories</a> - <a href="#">Tags</a> - <a href="#">Atom</a> - </nav> + <header itemscope itemtype="https://schema.org/WPHeader"> + <nav> + <a href="#">Home</a> + <a href="#">Archives</a> + <a href="#">Categories</a> + <a href="#">Tags</a> + <a href="#">Atom</a> + </nav> + </header> <article itemscope itemtype="https://schema.org/CreativeWork"> <header> <h2><a href="#">Simple 1.0.0</a></h2> - <time class="entry-date published" itemprop="datePublished" datetime="2021-05-08T05:00:00+02:00"> - <small> - Posted on November 9, 2021 in <a href="#">News</a> - </small> - </time> + <small> + <time class="entry-date published" itemprop="datePublished" datetime="2021-05-08T05:00:00+02:00"> + <span> + Posted on November 9, 2021 in <a href="#">News</a> + </span> + </time> by + <span itemprop='author' itemscope itemtype="https://schema.org/Person"> + <span itemprop="name"> + <a href="#" itemprop="url" + title="Article author">Anonymous</a> + </span> + </span> + </small> </header> <div> <div><p><a href="https://hgit.conocimientoslibres.ga/software/simple.git">Simple theme</a> 1.0.0 first release!</p> @@ -74,9 +84,12 @@ </div> <hr> </article> - <footer class="credits"> + <footer class="credits" itemscope itemtype="https://schema.org/WPFooter"> <p>© 2021 - This work is licensed under <a href="https://www.gnu.org/licenses/agpl-3.0.txt" rel="license"> - <abbr title="GNU Affero General Public License version 3 or later">GNU AGPL-3</abbr></a> | Mode: <label for="theme-switch" class="switch-label"></label></p> + <abbr title="GNU Affero General Public License version 3 or later"> GNU AGPL-3 </abbr></a> | Mode: <label for="theme-switch" class="switch-label"></label></p> + <p> + <a itemprop="license" href="/librejs.html" data-jslicense="1">Licencias de JavaScript</a> + </p> </footer> </main> </div> diff --git a/src/scss/styles/_base.scss b/src/scss/styles/_base.scss index 2d5416d..d03eb71 100644 --- a/src/scss/styles/_base.scss +++ b/src/scss/styles/_base.scss @@ -115,13 +115,15 @@ input[type="search"] { .main footer.credits { display: grid; justify-items: center; - padding-top: 0.2rem; + padding-top: 0.5rem; border-top: 1px solid var(--border); } .main footer.credits p { display: block; text-align: center; + margin: 0; + padding: 0; } hr { |