Nice little directory browser :D
0
fork

Configure Feed

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

clean: almost forgot those headers!

+34
+17
Components/Breadcrumbs.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 + 1 18 <div id="breadcrumbs" @attributes="AdditionalAttributes"> 2 19 <a href="/" class="clickable" hx-boost="true">/</a> 3 20 @for (var i = 0; i < _pathFragments.Count; i++) {
+17
Components/GoBackButton.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 + 1 18 <a id="go-back" 2 19 class="clickable" 3 20 href="@(_isAtRoot ? null : "..")"