diff options
Diffstat (limited to 'tests/resources/assets/refs.html')
-rw-r--r-- | tests/resources/assets/refs.html | 120 |
1 files changed, 120 insertions, 0 deletions
diff --git a/tests/resources/assets/refs.html b/tests/resources/assets/refs.html new file mode 100644 index 0000000..b24bd52 --- /dev/null +++ b/tests/resources/assets/refs.html @@ -0,0 +1,120 @@ +<!DOCTYPE html> +<html lang="en"> + <head> + <meta charset="UTF-8" /> + <meta name="viewport" content="width=device-width, initial-scale=1" /> + <link rel="icon" type="image/svg+xml" href="logo.svg" /> + <link rel="stylesheet" type="text/css" href="style.css" /> + <link rel="alternate" type="application/atom+xml" href="commits.xml" title="repo-1 - commit feed" hreflang="en" /> + <link rel="alternate" type="application/atom+xml" href="tags.xml" title="repo-1 - tags feed" hreflang="en" /> + <title>repo-1</title> + </head> + <body> + <header> + <div class="header-horizontal-grouping"> + <img alt="Logo image of the repository list" class="logo" src="logo.svg" /> + <div class="header-description"> + <h1> + repo-1 + </h1> + <h2> + Submodule repository for gistatic project tests + + </h2> + <code> + git clone https://example.com/ + </code> + </div> + </div> + <nav> + <ul> + <li> + <a href="files.html"> + files + </a> + </li> + <li> + <a href="log.html"> + log + </a> + </li> + <li class="selected-nav-item"> + <a href="refs.html"> + refs + </a> + </li> + </ul> + </nav> + <hr /> + </header> + <main> + <table> + <thead> + <tr> + <th> + Branch + </th> + <th> + Commit message + </th> + <th> + Author + </th> + <th> + Date + </th> + </tr> + </thead> + <tbody> + <tr> + <td> + <a href="log/main.html"> + main + </a> + </td> + <td> + <a href="commit/1eaf054b3ceb3badcb36a2293277c758454a630d.html"> + description: Add + </a> + </td> + <td> + EuAndreh + </td> + <td> + 2021-07-31 19:29 + </td> + </tr> + </tbody> + </table> + <table> + <thead> + <tr> + <th> + Tag + </th> + <th> + Commit message + </th> + <th> + Download + </th> + <th> + Author + </th> + <th> + Date + </th> + </tr> + </thead> + <tbody> + </tbody> + </table> + </main> + <footer> + <hr /> + <p> + Generated with <a href="https://euandreh.xyz/gistatic">gistatic</a>. + </p> + </footer> + </body> +</html> |