diff --git a/docs/en/1.10.x/adding-blog.html b/docs/en/1.10.x/adding-blog.html index c5e0c17318..3c28b9b251 100644 --- a/docs/en/1.10.x/adding-blog.html +++ b/docs/en/1.10.x/adding-blog.html @@ -98,7 +98,6 @@ authorFBID: 503283835 title: Introducing Docusaurus - Lorem Ipsum...
---
title: Truncation Example
---
-
All this will be part of the blog post summary.
Even this.
@@ -160,22 +158,23 @@
Now, when Docusaurus generates or builds your site, it will copy the file from static/index.html
and place it in the site's main directory. The static file is served when a visitor arrives on your page. When the page loads it will redirect the visitor to /blog
.
You can use this template:
-<!DOCTYPE HTML>
+<!DOCTYPE html>
<html lang="en-US">
<head>
- <meta charset="UTF-8">
- <meta http-equiv="refresh" content="0; url=blog/">
+ <meta charset="UTF-8" />
+ <meta http-equiv="refresh" content="0; url=blog/" />
<script type="text/javascript">
window.location.href = 'blog/';
</script>
<title>Title of Your Blog</title>
</head>
<body>
- If you are not redirected automatically, follow this <a href="blog/">link</a>.
+ If you are not redirected automatically, follow this
+ <a href="blog/">link</a>.
</body>
</html>
-Last updated on 2019-11-11 by Eric Carboni