diff options
author | Florrie <towerofnix@gmail.com> | 2018-11-14 21:52:06 -0400 |
---|---|---|
committer | Florrie <towerofnix@gmail.com> | 2018-11-14 21:52:06 -0400 |
commit | de8be5074f1d7d105b505ad30436ff881c48f918 (patch) | |
tree | 064976b22548e59dbb95be7b39173d9a52820d41 | |
parent | 22a90c28477c964b385f70c3d351e50922403d78 (diff) |
Move download link below instructions/N&C
Just an experiment. I wonder if this will make it easier to pay attention to the instructions / notes and credits.
-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 |