Add computers and consoles to sidebar.

This commit is contained in:
2020-05-22 00:45:58 +01:00
parent c430d3e835
commit 44ae0b38b2
3 changed files with 19 additions and 1 deletions

View File

@@ -2,7 +2,7 @@
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<Version>3.0.99.961</Version>
<Version>3.0.99.962</Version>
<Company>Canary Islands Computer Museum</Company>
<Copyright>Copyright © 2003-2020 Natalia Portillo</Copyright>
<Product>Canary Islands Computer Museum Website</Product>

View File

@@ -150,4 +150,12 @@
<value>Compañías</value>
<comment>Companies</comment>
</data>
<data name="Computers" xml:space="preserve">
<value>Ordenadores</value>
<comment>Computers</comment>
</data>
<data name="Consoles" xml:space="preserve">
<value>Consolas</value>
<comment>Videogame consoles</comment>
</data>
</root>

View File

@@ -19,6 +19,16 @@
<span class="fa fa-building" aria-hidden="true"></span>&nbsp;@L["Companies"]
</NavLink>
</li>
<li class="nav-item px-3">
<NavLink class="nav-link" href="computers">
<span class="fa fa-desktop" aria-hidden="true"></span>&nbsp;@L["Computers"]
</NavLink>
</li>
<li class="nav-item px-3">
<NavLink class="nav-link" href="consoles">
<span class="fa fa-gamepad" aria-hidden="true"></span>&nbsp;@L["Consoles"]
</NavLink>
</li>
</ul>
</div>