Git Product home page Git Product logo

tumblr-html5-blank-theme's Introduction

Hi there ๐Ÿ‘‹

๐Ÿ“Ÿ cyber

Pentesting Handbook
Web Dลjล - WebApps Pentesting Lab

:shipit: devops

ฮป AWS Lambdas@Edge A/B Testing
Cookiecutter Chalice Framework

๐Ÿ™ rice

NordVPN Tmux Plugin
homesick - My daily dotfiles.
ยตz - ZSH Micro Plugin Manager.
gitster - A Gister ZSH theme with no dependencies.
zsh-history - Sets sane ZSH history options.
zsh-kubernetes-contexts - Kubectl contexts alias and completion definition for Zsh.

๐Ÿ‘ฝ others

Wisdom Hugo Theme - Fast, minimalist, and monospace.
Wasabi - A simple yet useful keypad.


Let's start working together?

Follow The White Rabbit

tumblr-html5-blank-theme's People

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

tumblr-html5-blank-theme's Issues

Wrong semantic elements in chat posts

The chat posts in this theme are made of <dialog> elements, which according to the HTML spec represent modal UI components (not conversations!). Using <dt> and <dd> also stretches the semantics as these usually represent glossary terms. A list or a table is probably a better idea, like this:

{block:Chat}
<article class="post chat">
  {block:Title}
  <header>
    <h2>{Title}</h2>
  </header>
  {/block:Title}
  <table>
    {block:Lines}
    <tr>
      <th class="{Alt} {UserNumber}">{block:Label}{Label}{/block:Label}</th>
      <td>{Line}</td>
    </tr>
    {/block:Lines}
  </table>
{/block:Chat}

Remove paragraph elements around content

The code currently wraps site description and text post content in paragraphs.

<p>
  {Body}
</p>

However, both of these can contain html elements that are not allowed within paragraphs. Text posts are usually already separated in paragraphs. The HTML specification states that a paragraph automatically ends when another one starts, which means nested paragraphs will be interpreted as this:

<p>
  </p><p>Lorem ipsum dolor sit amet.</p><p>Morbi non sapien dictum</p>
</p>

Which adds a useless whitespace paragraph before the content. It is also invalid HTML as there is an unmatched closing tag at the end, which Chrome turns into an empty paragraph. The paragraphs should simply be removed, or replaced with divs for styling purposes.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.