Empty layout directory

Following earlier help: Example html content request - #8 by RickCogley

RickCogley:

Repeated the steps in the manual: quick start, step 4

hugo new posts/post1.md
ERROR 2018/01/07 23:01:09 No ‘baseURL’ set in configuration or as a flag. Features like page menus will not work without one.
/home/…/content/posts/post1.md created

content/post1.md

title: "Post1"
date: 2018-01-07T23:01:09Z
draft: true
---
<h1>
	test
</h1>
<p>
	test text
</p>

config.toml
languageCode = “en-gb”
title = “My New Hugo Site”
theme = “hyde-master”
[params] DateForm = “1.2.1970”
baseURL = “http://127.0.0.1
contentDir = “content”
layoutDir = “layouts”
publishDir = “public”
buildDrafts = false
canonifyURLs = true

hugo -D serve -b http://127.0.0.1:1313 --verbose
INFO 2018 Using config file:
INFO 2018 using a UnionFS for static directory comprised of:
INFO 2018 Base: /home/…/themes/hyde-master/static
INFO 2018 Overlay: /home/…/static/
INFO 2018 syncing static files to /
WARN 2018 No translation bundle found for default language “en”
WARN 2018 Translation func for language en not found, use default.
WARN 2018 i18n not initialized, check that you have language file (in i18n) that matches the site language or the default language.
Started building sites …
INFO 2018 found taxonomies: map[string]string{“tag”:“tags”, “category”:“categories”}
WARN 2018 [en] Unable to locate layout for “taxonomyTerm”: [taxonomy/category.terms.en.html.html taxonomy/category.terms.html.html taxonomy/category.terms.en.html taxonomy/category.terms.html _default/terms.en.html.html _default/terms.html.html _default/terms.en.html _default/terms.html indexes/indexes.en.html.html indexes/indexes.html.html indexes/indexes.en.html indexes/indexes.html theme/taxonomy/category.terms.en.html.html theme/taxonomy/category.terms.html.html theme/taxonomy/category.terms.en.html theme/taxonomy/category.terms.html theme/_default/terms.en.html.html theme/_default/terms.html.html theme/_default/terms.en.html theme/_default/terms.html theme/indexes/indexes.en.html.html theme/indexes/indexes.html.html theme/indexes/indexes.en.html theme/indexes/indexes.html]
WARN 2018 [en] Unable to locate layout for “taxonomyTerm”: [taxonomy/tag.terms.en.html.html taxonomy/tag.terms.html.html taxonomy/tag.terms.en.html taxonomy/tag.terms.html _default/terms.en.html.html _default/terms.html.html _default/terms.en.html _default/terms.html indexes/indexes.en.html.html indexes/indexes.html.html indexes/indexes.en.html indexes/indexes.html theme/taxonomy/tag.terms.en.html.html theme/taxonomy/tag.terms.html.html theme/taxonomy/tag.terms.en.html theme/taxonomy/tag.terms.html theme/_default/terms.en.html.html theme/_default/terms.html.html theme/_default/terms.en.html theme/_default/terms.html theme/indexes/indexes.en.html.html theme/indexes/indexes.html.html theme/indexes/indexes.en.html theme/indexes/indexes.html]
Built site for language en:
0 of 1 draft rendered
0 future content
0 expired content
1 regular pages created
10 other pages created
0 non-page files copied
0 paginator pages created
1 tags created
1 categories created
total in 10 ms
WARN 2018 Skip i18nDir: lstat /home/…/i18n: no such file or directory
Watching for changes in /home/…/{data,content,layouts,static,themes}
WARN 2018 Skip i18nDir: lstat /home/…/i18n: no such file or directory
Serving pages from memory
Web Server is available at http://127.0.0.1:1313/ (bind address 127.0.0.1)
Press Ctrl+C to stop

For the verbose output entry:

Why does the configuration file parameter:

baseURL = “http://127.0.0.1

not accepted and causes the error in the verbose log
Unable to locate layout for “taxonomyTerm”: [taxonomy/category.terms.en.html.html

Does this mean that the user has to create manually a directory ‘taxonomy’, then create an html file ‘category.terms.en.html.html’?