Skip to content

Commit

Permalink
add header
Browse files Browse the repository at this point in the history
  • Loading branch information
anddann authored and mbenz89 committed Dec 29, 2021
1 parent 75d37fd commit 563a1c6
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@
(async () => {
const response = await fetch('https://api.github.com/repos/soot-oss/soot/contents/docs?ref=gh-pages');
const data = await response.json();
let htmlString = '<ul>';
let htmlString = '<h1>Soot Documentation</h1>';
htmlString += '<ul>'
for (let file of data) {
// do not create an index for html or css files
if(file.name.endsWith('.html') || file.name.endsWith('.css') ){
Expand Down

0 comments on commit 563a1c6

Please sign in to comment.