Skip to content
This repository was archived by the owner on Aug 25, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified build/ui-bundle.zip
Binary file not shown.
45 changes: 36 additions & 9 deletions src/partials/article-404.hbs
Original file line number Diff line number Diff line change
@@ -1,10 +1,37 @@
<article class="doc">
<h1 class="page">{{{or page.title 'Page Not Found'}}}</h1>
<div class="paragraph">
<p>The page you&#8217;re looking for does not exist. It may have been moved. You can{{#with site.homeUrl}} return to the <a href="{{{this}}}">start page</a>, or{{/with}} follow one of the links in the navigation to the left.</p>
</div>
<div class="paragraph">
<p>If you arrived on this page by clicking on a link, please notify the owner of the site that the link is broken.
If you typed the URL of this page manually, please double check that you entered the address correctly.</p>
</div>
<pre>{{log page}}</pre>
<article
class="doc"
style="
text-align: center;
height: 75vh;
display: grid;
place-items: center;
place-content: center;
"
>
<h1 class="page">
Page Not Found
</h1>
<div class="paragraph">
<p>
The page you are looking for no longer exists.
</p>
</div>
<div class="paragraph">
<p>
If you believe this is a mistake, please help by
<a
style="cursor:pointer;text-decoration:none;"
target="_blank"
onclick="this.href=`https://github.com/starknet-io/starknet-docs/issues/new?assignees=landauraz&title=${encodeURIComponent(window.location.href)} is broken`"
>submitting an issue</a>.
</p>
</div>
<div class="paragraph">
<a href="{{{site.homeUrl}}}" style="text-decoration:none;">
<h1 style="font-size:1.1rem;">
Click here to go to the docs homepage
</h1>
</a>
</div>
</article>
4 changes: 3 additions & 1 deletion src/partials/body.hbs
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<div class="body">
{{> nav}}
{{#unless (eq page.layout '404')}}
{{> nav}}
{{/unless}}
{{> main}}
</div>
2 changes: 1 addition & 1 deletion src/partials/footer-scripts.hbs
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<script async src="{{{uiRootPath}}}/js/vendor/tabs-block-behaviour.js?new"></script>
<script async src="{{{uiRootPath}}}/js/vendor/swagger-ui.js?new"></script>
<script async src="{{{uiRootPath}}}/js/vendor/component-versions.js?new"></script>
<script src="https://chatwith.tools/chatbot/04f9f1da-f9bd-46c1-a74d-b72cec2014ea.js" async=""></script>
<script src="{{uiRootPath}}/js/vendor/custom.js?new"></script>
<script async src="{{{uiRootPath}}}/js/vendor/tabs.js"></script>
<script src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script>
{{#if page.component}}<script src="https://chatwith.tools/chatbot/04f9f1da-f9bd-46c1-a74d-b72cec2014ea.js" async=""></script>{{/if}}