Nice little directory browser :D
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat/ThankYouTestUser: add alpha warning to NotFound, moving to component

+42 -16
+1 -16
Components/Header.razor
··· 41 41 <span id="file-counter" class="my-auto" _="@_scriptForIdFileCounter" /> 42 42 </div> 43 43 <hr/> 44 - <div id="message" class="text-center items-center text-3xl flex flex-row gap-3"> 45 - <div>🚧</div> 46 - <span class="mask-[linear-gradient(to_right,transparent,black_5%,black_95%,transparent)] w-full overflow-hidden text-sm invisible" 47 - data-duration="7500" 48 - data-gap="25" 49 - data-duplicated="true" 50 - data-duplicateCount="1" 51 - _="on load call $(me).marquee() then remove .invisible" 52 - > 53 - <div class="flex gap-[25px]"> 54 - <span>Hello, alpha tester! I'm testing out a rewrite of this file browser, sorry if anything breaks! If you need anything, please don't hesitate to contact me on Twitter!</span> 55 - <span>🦋</span> @* divider charm *@ 56 - </div> 57 - </span> 58 - <div>🚧</div> 59 - </div> 44 + <ThankYouTestUser /> 60 45 </header> 61 46 62 47 @code {
+7
Components/Pages/NotFound.razor
··· 20 20 21 21 <AppTitle>OOPSIE WOOPSIE!!</AppTitle> 22 22 23 + <HeadContent> 24 + <script src="/.nhnd/_hyperscript.js"></script> 25 + <script src="/.nhnd/_hs_tailwind.js"></script> 26 + </HeadContent> 27 + 23 28 <div class="n-box text-center gap-2"> 24 29 <h1> 25 30 <span class="text-6xl">@context.HttpContext.Response.StatusCode</span> ··· 32 37 </h1> 33 38 <hr/> 34 39 OOPSIE WOOPSIE!! Uwu We made a fucky wucky!! A wittle fucko boingo! The code monkeys at our headquarters are working VEWY HAWD to fix this! 40 + <hr/> 41 + <ThankYouTestUser /> 35 42 <hr/> 36 43 <a href="/" class="clickable p-4">go home......</a> 37 44 </div>
+34
Components/ThankYouTestUser.razor
··· 1 + @* 2 + This file is part of Utatane. 3 + 4 + Utatane is free software: you can redistribute it and/or modify it under 5 + the terms of the GNU Affero General Public License as published by the Free 6 + Software Foundation, either version 3 of the License, or (at your option) 7 + any later version. 8 + 9 + Utatane is distributed in the hope that it will be useful, but WITHOUT ANY 10 + WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 11 + FOR A PARTICULAR PURPOSE. See the GNU Affero General Public License for 12 + more details. 13 + 14 + You should have received a copy of the GNU Affero General Public License 15 + along with Utatane. If not, see <http://www.gnu.org/licenses/>. 16 + *@ 17 + 18 + @* TODO: BUG on using browser back button, marquee text will duplicate. *@ 19 + <div id="message" class="text-center items-center text-3xl flex flex-row gap-3"> 20 + <div>🚧</div> 21 + <span class="mask-[linear-gradient(to_right,transparent,black_5%,black_95%,transparent)] w-full overflow-hidden text-sm invisible" 22 + data-duration="7500" 23 + data-gap="25" 24 + data-duplicated="true" 25 + data-duplicateCount="1" 26 + _="on load call $(me).marquee() then remove .invisible" 27 + > 28 + <div class="flex gap-[25px]"> 29 + <span>Hello, alpha tester! I'm testing out a rewrite of this file browser, sorry if anything breaks! If you need anything, please don't hesitate to contact me on Twitter!</span> 30 + <span>🦋</span> @* divider charm *@ 31 + </div> 32 + </span> 33 + <div>🚧</div> 34 + </div>a