diff options
Diffstat (limited to 'index.js')
-rwxr-xr-x | index.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/index.js b/index.js index 588d76e..7a2d009 100755 --- a/index.js +++ b/index.js @@ -369,7 +369,6 @@ const handleRequest = async (request, response) => { await page(request, response, fixWS` <h1>${project.title}</h1> <p><img src="${project.image}" alt="The thumbnail for this project"></p> - <p><a href="https://projects.scratch.mit.edu/${project.id}">Download!</a></p> ${project.instructions ? fixWS` <h2>Instructions</h2> ${templates.longField(project.instructions)} @@ -382,6 +381,7 @@ const handleRequest = async (request, response) => { ` : fixWS` <p>(No notes and credits.)</p> `} + <p><a href="https://projects.scratch.mit.edu/${project.id}">Download!</a></p> `) return |