diff options
Diffstat (limited to 'src/posts')
-rw-r--r-- | src/posts/big-list-game-dev.njk | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/src/posts/big-list-game-dev.njk b/src/posts/big-list-game-dev.njk index 9fadb58..d8523f8 100644 --- a/src/posts/big-list-game-dev.njk +++ b/src/posts/big-list-game-dev.njk @@ -19,30 +19,27 @@ title: Big List of Open Source Game Development Tools <div class="mt-5"> <div class="overflow-auto"> <table class="min-w-full"> - <thead class="border-b"> + <thead class="border-b uppercase"> <tr> - <th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left"> + <th scope="col" class="text-sm font-bold text-gray-900 px-6 py-4 text-left"> Tool </th> - <th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left"> + <th scope="col" class="text-sm font-bold text-gray-900 px-6 py-4 text-left"> Tool Type </th> - <th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left"> + <th scope="col" class="text-sm font-bold text-gray-900 px-6 py-4 text-left"> Supported Graphics </th> - <th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left"> + <th scope="col" class="text-sm font-bold text-gray-900 px-6 py-4 text-left"> OS Supported </th> - <th scope="col" class="text-sm font-medium text-gray-900 px-6 py-4 text-left"> - Link - </th> </tr> </thead> <tbody> {% for tool in gtools.gameTools%} <tr class="border-b"> - <td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"> - {{tool.toolName}} + <td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap underline"> + <a href={{tool.link}}>{{tool.toolName}}</a> </td> <td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"> {{tool.type}} @@ -53,9 +50,6 @@ title: Big List of Open Source Game Development Tools <td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"> {{tool.os}} </td> - <td class="text-sm text-gray-900 font-light px-6 py-4 whitespace-nowrap"> - {{tool.link}} - </td> </tr> {% endfor %} </tbody> |