Hello. I am create a website with two versions of the language. Its structure:
content
├── english
│ └── header.md
├── examples
│ └── static_header.md
└── russian
└── header.md
In the header.md file (in both Russian and English versions) I need to reference for static_header.md. The examples folder does not belong to languages, it contains common files. How can I get a link to static_header.md from the article? I did not use the Get method, because I am making a link in the md file, not in the html.
When I had one version of the language, this construction (in the header.md file) worked:
[View example](http://localhost:1313/examples/headers/static_header)
Now this link is going nowhere. How to fix it?