The article 'Autotranslate my Hugo blog with Gemini' (publish_date: 2024-02-05) is defined in etc/data.yaml with an external url (https://ricc.rocks/...). However, the application attempts to serve this article via an internal route (/articles/2024-02-05-autotranslate-my-hugo-blog-with-gemini), resulting in a 404 error.
This indicates a mismatch between the data definition and the routing logic for articles that have external URLs. The application should either:
- Directly link to the external URL for such articles.
- Have a mechanism to fetch and display the content from the external URL internally (if desired, though direct linking is simpler).
Currently, the article is unreachable within the application's internal routing.
(Note: This issue is a re-creation of #10, using a temporary file for the body as per user instruction.)
The article 'Autotranslate my Hugo blog with Gemini' (publish_date: 2024-02-05) is defined in
etc/data.yamlwith an externalurl(https://ricc.rocks/...). However, the application attempts to serve this article via an internal route (/articles/2024-02-05-autotranslate-my-hugo-blog-with-gemini), resulting in a 404 error.This indicates a mismatch between the data definition and the routing logic for articles that have external URLs. The application should either:
Currently, the article is unreachable within the application's internal routing.
(Note: This issue is a re-creation of #10, using a temporary file for the body as per user instruction.)