This is an automated email from the ASF dual-hosted git repository. bcall pushed a commit to branch modernize-website in repository https://gitbox.apache.org/repos/asf/trafficserver-site.git
commit 3cb559ec05e26314def13fe25a43b8628f9572c0 Author: Bryan Call <[email protected]> AuthorDate: Wed Dec 24 13:18:43 2025 -0800 Fix downloads page: add changelog button for 9.2.11 and make 10.1.0 button visible - Added changelog link for version 9.2.11 - Replaced btn-gradient class with explicit Tailwind gradient for 10.1.0 - Both download buttons now properly visible and styled --- newsite/content/downloads.html | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/newsite/content/downloads.html b/newsite/content/downloads.html index 8a843aa..34bf045 100644 --- a/newsite/content/downloads.html +++ b/newsite/content/downloads.html @@ -155,7 +155,7 @@ </div> <div class="flex flex-col sm:flex-row gap-4 items-center"> - <a href="https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-10.1.0.tar.bz2" class="btn-gradient inline-block px-8 py-4 rounded-lg font-semibold text-white text-center w-full sm:w-auto"> + <a href="https://www.apache.org/dyn/closer.cgi/trafficserver/trafficserver-10.1.0.tar.bz2" class="inline-block px-8 py-4 rounded-lg font-semibold bg-gradient-to-r from-blue-500 to-blue-900 hover:from-blue-600 hover:to-blue-950 text-white text-center w-full sm:w-auto transition-all shadow-md hover:shadow-lg"> <svg class="w-5 h-5 inline-block mr-2 -mt-1" fill="none" stroke="currentColor" viewBox="0 0 24 24"> <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 16v1a3 3 0 003 3h10a3 3 0 003-3v-1m-4-4l-4 4m0 0l-4-4m4 4V4"/> </svg> @@ -227,6 +227,9 @@ <a href="https://www.apache.org/dist/trafficserver/trafficserver-9.2.11.tar.bz2.sha512" class="px-4 py-2 border border-gray-300 rounded-lg hover:bg-gray-50 font-medium"> SHA512 </a> + <a href="https://raw.githubusercontent.com/apache/trafficserver/9.2.x/CHANGELOG-9.2.11" class="px-4 py-2 border border-gray-300 rounded-lg hover:bg-gray-50 font-medium"> + Changelog + </a> </div> </div> </div>
