Skip to content

Commit

Permalink
SEO
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgebg committed Dec 1, 2023
1 parent 140f21c commit 4fa4d8d
Show file tree
Hide file tree
Showing 4 changed files with 344 additions and 152 deletions.
57 changes: 55 additions & 2 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,65 @@
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Scratch Teacher Tools</title>
<style>
main {
max-width: 600px;
margin: auto;
padding: 1em;
}
div p {
text-align: justify;
}
</style>
</head>
<body>
<div id="app"></div>
<main>
<h1>Scratch Plagiarism Checker</h1>
<div>
<p>
A tool for detecting plagiarism in
<a href="https://scratch.mit.edu/" target="_blank">Scratch projects</a
>.
</p>

<p>
Provide a folder or a ZIP file containing projects in the
<a
href="https://en.scratch-wiki.info/wiki/Scratch_File_Format"
target="_blank"
>Scratch File Format</a
>
(".sb3"). The tool will compare the
<a
href="https://en.scratch-wiki.info/wiki/Scratch_File_Format#Blocks"
target="_blank"
>blocks</a
>
and
<a
href="https://en.scratch-wiki.info/wiki/Scratch_File_Format#Targets"
target="_blank"
>targets</a
>
and give a score based on its similarity.
</p>
<p>
Try
<a id="example" href="/examples.zip"> uploading an example</a>.
</p>
</div>
<div id="app"></div>
</main>
<script type="module" src="/src/main.ts"></script>
<script>
function example(e) {
e.preventDefault();
document.getElementById("fetch").click();
}
document.getElementById("example").addEventListener("click", example);
</script>
</body>
</html>
Binary file removed public/favicon.ico
Binary file not shown.
177 changes: 177 additions & 0 deletions public/favicon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 4fa4d8d

Please sign in to comment.