Change divs to semantic tags
This commit is contained in:
parent
ca27957077
commit
c4c13cf678
|
@ -1,6 +1,7 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
html(lang="en")
|
html(lang="en")
|
||||||
head
|
head
|
||||||
|
meta(name="viewport", content="width=device-width, initial-scale=1.0")
|
||||||
title July 2018
|
title July 2018
|
||||||
link(rel="stylesheet", href="../css/common.css")
|
link(rel="stylesheet", href="../css/common.css")
|
||||||
link(rel="stylesheet", href="../css/post.css")
|
link(rel="stylesheet", href="../css/post.css")
|
||||||
|
@ -10,8 +11,8 @@ html(lang="en")
|
||||||
div(id="wrapper")
|
div(id="wrapper")
|
||||||
h1 July 2018
|
h1 July 2018
|
||||||
|
|
||||||
div(id="post")
|
section(id="post")
|
||||||
div(id="toc")
|
article(id="toc")
|
||||||
h2 Table Of Contents
|
h2 Table Of Contents
|
||||||
ul
|
ul
|
||||||
li: a(href="#about") About
|
li: a(href="#about") About
|
||||||
|
@ -28,11 +29,11 @@ html(lang="en")
|
||||||
li: a(href="#opened") Opened
|
li: a(href="#opened") Opened
|
||||||
li: a(href="#closed") Closed
|
li: a(href="#closed") Closed
|
||||||
|
|
||||||
div(id="about")
|
article(id="about")
|
||||||
h2 About
|
h2 About
|
||||||
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
|
p The Tildes Issue Log is a monthly recurring post about the changes and progression that Tildes has made. Highlighting some of the newest additions and changes, as well as a complete table of every issue opened and closed in that month, along with some interesting statistics so you can get a look into the development process and a quick grasp of anything you may have missed.
|
||||||
|
|
||||||
div(id="feedback")
|
article(id="feedback")
|
||||||
h2 Feedback
|
h2 Feedback
|
||||||
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
p If anything is incorrect or you have anything that you'd like to see changed or added please
|
||||||
|
|
|
|
||||||
|
@ -45,7 +46,7 @@ html(lang="en")
|
||||||
| or comment on the posted topic on Tildes.
|
| or comment on the posted topic on Tildes.
|
||||||
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
|
p If you'd like to write a highlight section or want to contribute in any other way, feel free to do so. Like Tildes, this will remain entirely open-source.
|
||||||
|
|
||||||
div(id="highlights")
|
article(id="highlights")
|
||||||
h2 Highlights
|
h2 Highlights
|
||||||
//- User written highlights of what happened with development and any notable changes, if applicable.
|
//- User written highlights of what happened with development and any notable changes, if applicable.
|
||||||
|
|
||||||
|
@ -87,12 +88,12 @@ html(lang="en")
|
||||||
a(href="https://tildes.net/user/Bauke") Bauke
|
a(href="https://tildes.net/user/Bauke") Bauke
|
||||||
p Written Date: 2018-08-19
|
p Written Date: 2018-08-19
|
||||||
|
|
||||||
div(id="statistics")
|
article(id="statistics")
|
||||||
h2 Statistics
|
h2 Statistics
|
||||||
//- Any statistics that would be fun/interesting to read about, more info: issue #1
|
//- Any statistics that would be fun/interesting to read about, more info: issue #1
|
||||||
//- These are automatically generated, see the README.
|
//- These are automatically generated, see the README.
|
||||||
|
|
||||||
div(id="daily-discussions")
|
article(id="daily-discussions")
|
||||||
h2 Daily Discussions
|
h2 Daily Discussions
|
||||||
table
|
table
|
||||||
thead
|
thead
|
||||||
|
@ -142,11 +143,11 @@ html(lang="en")
|
||||||
td Approaches to self-promotion.
|
td Approaches to self-promotion.
|
||||||
td: a(href="https://tildes.net/~tildes.official/3i5") Click
|
td: a(href="https://tildes.net/~tildes.official/3i5") Click
|
||||||
|
|
||||||
div(id="issue-table")
|
article(id="issue-table")
|
||||||
h2 Issue Table
|
h2 Issue Table
|
||||||
//- These are automatically generated, see the README.
|
//- These are automatically generated, see the README.
|
||||||
|
|
||||||
div(id="footer")
|
footer(id="footer")
|
||||||
h3: a(href="../index.html") Home
|
h3: a(href="../index.html") Home
|
||||||
h3: a(href="#") To Top
|
h3: a(href="#") To Top
|
||||||
h3: a(href="https://tildes.net") Tildes
|
h3: a(href="https://tildes.net") Tildes
|
||||||
|
|
Reference in New Issue