Docs: Don't suggest/use a CSS framework (#1495)

This commit is contained in:
Avinash Sonawane 2021-05-27 13:10:51 +00:00 committed by GitHub
parent 0ca311fdd1
commit ff8805ec09
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions

View file

@ -7,7 +7,7 @@ A section is created whenever a directory (or subdirectory) in the `content` sec
`_index.md` file. If a directory does not contain an `_index.md` file, no section will be
created, but Markdown files within that directory will still create pages (known as orphan pages).
The index page (i.e., the page displayed when a user browses to your `base_url`) is a section,
The homepage (i.e., the page displayed when a user browses to your `base_url`) is a section,
which is created whether or not you add an `_index.md` file at the root of your `content` directory.
If you do not create an `_index.md` file in your content directory, this main content section will
not have any content or metadata. If you would like to add content or metadata, you can add an

View file

@ -78,7 +78,7 @@ If you point your web browser to <http://127.0.0.1:1111>, you should see a "Welc
### Home Page
Let's make a home page. To do this, let's first create a `base.html` file inside the `templates` directory. This step will make more sense as we move through this overview. We'll be using the CSS framework [Bulma](https://bulma.io/).
Let's make a home page. To do this, let's first create a `base.html` file inside the `templates` directory. This step will make more sense as we move through this overview.
```html
<!DOCTYPE html>
@ -87,7 +87,6 @@ Let's make a home page. To do this, let's first create a `base.html` file inside
<head>
<meta charset="utf-8">
<title>MyBlog</title>
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.8.0/css/bulma.min.css">
</head>
<body>