-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Joshua T Kalis
committed
Sep 21, 2024
1 parent
a60df59
commit 5b2ee7d
Showing
9 changed files
with
113 additions
and
164 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,69 +1,67 @@ | ||
export const snapshot = {}; | ||
|
||
snapshot[`renderPages 1`] = ` | ||
'about.html | ||
<ul> | ||
<li><a class="" href="./index.html">Resume</a></li> | ||
<li><a class="isActive" href="./about.html">About</a></li> | ||
<li><a class="" href="./articles/index.html">Articles</a></li> | ||
</ul> | ||
<main> | ||
<h1 id="hello">Hello</h1> | ||
<p>About me.</p> | ||
</main> | ||
--- | ||
index.html | ||
<ul> | ||
<li><a class="isActive" href="./index.html">Resume</a></li> | ||
<li><a class="" href="./about.html">About</a></li> | ||
<li><a class="" href="./articles/index.html">Articles</a></li> | ||
</ul> | ||
<main> | ||
<h1 id="resume">Resume</h1> | ||
</main> | ||
--- | ||
articles/index.html | ||
<ul> | ||
<li><a class="" href="../index.html">Resume</a></li> | ||
<li><a class="" href="../about.html">About</a></li> | ||
<li><a class="isActive" href="../articles/index.html">Articles</a></li> | ||
</ul> | ||
<main> | ||
<h1 id="articles-index">Articles Index</h1> | ||
</main> | ||
--- | ||
articles/something.html | ||
<ul> | ||
<li><a class="" href="../index.html">Resume</a></li> | ||
<li><a class="" href="../about.html">About</a></li> | ||
<li><a class="isActive" href="../articles/index.html">Articles</a></li> | ||
</ul> | ||
<main> | ||
<h1 id="somthing">Somthing</h1> | ||
</main> | ||
--- | ||
articles/another.html | ||
<ul> | ||
<li><a class="" href="../index.html">Resume</a></li> | ||
<li><a class="" href="../about.html">About</a></li> | ||
<li><a class="isActive" href="../articles/index.html">Articles</a></li> | ||
</ul> | ||
<main> | ||
<h1 id="another">Another</h1> | ||
</main> | ||
' | ||
[ | ||
"about.html", | ||
"", | ||
"<ul>", | ||
'<li><a class="" href="./index.html">Resume</a></li>', | ||
'<li><a class="isActive" href="./about.html">About</a></li>', | ||
'<li><a class="" href="./articles/index.html">Articles</a></li>', | ||
"</ul>", | ||
"<main>", | ||
'<h1 id="hello">Hello</h1>', | ||
"<p>About me.</p>", | ||
"", | ||
"</main>", | ||
"", | ||
"index.html", | ||
"", | ||
"<ul>", | ||
'<li><a class="isActive" href="./index.html">Resume</a></li>', | ||
'<li><a class="" href="./about.html">About</a></li>', | ||
'<li><a class="" href="./articles/index.html">Articles</a></li>', | ||
"</ul>", | ||
"<main>", | ||
'<h1 id="resume">Resume</h1>', | ||
"", | ||
"</main>", | ||
"", | ||
"articles/index.html", | ||
"", | ||
"<ul>", | ||
'<li><a class="" href="../index.html">Resume</a></li>', | ||
'<li><a class="" href="../about.html">About</a></li>', | ||
'<li><a class="isActive" href="../articles/index.html">Articles</a></li>', | ||
"</ul>", | ||
"<main>", | ||
'<h1 id="articles-index">Articles Index</h1>', | ||
"", | ||
"</main>", | ||
"", | ||
"articles/something.html", | ||
"", | ||
"<ul>", | ||
'<li><a class="" href="../index.html">Resume</a></li>', | ||
'<li><a class="" href="../about.html">About</a></li>', | ||
'<li><a class="isActive" href="../articles/index.html">Articles</a></li>', | ||
"</ul>", | ||
"<main>", | ||
'<h1 id="somthing">Somthing</h1>', | ||
"", | ||
"</main>", | ||
"", | ||
"articles/another.html", | ||
"", | ||
"<ul>", | ||
'<li><a class="" href="../index.html">Resume</a></li>', | ||
'<li><a class="" href="../about.html">About</a></li>', | ||
'<li><a class="isActive" href="../articles/index.html">Articles</a></li>', | ||
"</ul>", | ||
"<main>", | ||
'<h1 id="another">Another</h1>', | ||
"", | ||
"</main>", | ||
"", | ||
] | ||
`; |
Oops, something went wrong.