Hi guys!
Very frustrated with this error, somehow, my new article, my new entry to my blog, is not showing, a FIle not Found error shows, in local and after building.
Here’s how it shows in my localhost:
And here you can check it online.
Here is my sitemap in localhost:
And here is online.
Also, this may help. My “blog code-block”:
activate :blog do |blog|
# This will add a prefix to all links, template references and source paths
#blog.prefix = "blog"
blog.permalink = '{title}'
# Matcher for blog source files
blog.sources = 'articles/{year}-{month}-{day}-{title}.html'
blog.layout = 'article'
blog.default_extension = '.md.erb'
activate :directory_indexes
#blog.taglink = "tags/{tag}.html"
blog.paginate = true
blog.page_link = "p{num}"
blog.per_page = 9
end
Here you can see the feed.xml online. I think this may help…
Adding: when I run ‘bundle exec middleman build --verbose’ I get this error message:
error build/what-s-haskell?/index.html
<html><head></head><body><h1>File Not Found</h1><p>/what-s-haskell</p></body></html>
I run with bundle exec prefix because some thor problem that tells me to use the prefix, without bundle exec the local server will not start. I do not think that this is related to the error, but is better if you know it now.
I’v been changin the permalink, the prefix, the blog sources, the defualt extension, commented directory indexes, pagination… nothing worked. Maybe has something to do with the sitemap? Or Gemfile.lock? Or even the feed.xml? I’m starting this personal website and this issue got me stuck
Regards!