public IActionResult Index()
        {
            var articles = _yaml.ReadGraph();

            if (articles == null || !articles.Any())
            {
                return(NotFound());
            }

            var gArticles = articles.GroupBy(c => c.Category);

            return(View(gArticles));
        }