public async Task <IActionResult> DuckInBath()
        {
            PressReleasesModel model = new PressReleasesModel()
            {
                file_location = "https://trilliantring.com/PressReleases/turd_in_the_punch_bowl.html",
                is_PDF        = false,
                is_HTML       = true
            };

            return(await Task.Run(() => View ("Details", model)));
        }
        public async Task <IActionResult> AcceptingPerfection()
        {
            PressReleasesModel model = new PressReleasesModel()
            {
                file_location = "https://trilliantring.com/PressReleases/AcceptingPerfection.html",
                is_PDF        = false,
                is_HTML       = true
            };

            return(await Task.Run(() => View ("Details", model)));
        }