bagetter / BaGetter

A lightweight NuGet and symbol server
https://www.bagetter.com
MIT License
243 stars 53 forks source link

Display tags on package page #82

Closed FroggieFrog closed 7 months ago

FroggieFrog commented 7 months ago

This PR adds a section Tags to the package page similar to the official gallery and the already existing Authors section.

Tags section

after_tag-detail

Regenhardt commented 7 months ago

Can you add some kind of background to each tag like on nuget.org? image It could work like this:

@foreach(var tag in Model.Package.Tags)
{ 
    <span class="tag">@tag</span>
}
FroggieFrog commented 7 months ago

I styled the tags according to the official gallery except the text color to avoid confusion with links.

tags before PR #85

before_single-tag

tags after PR #85

after_single-tag

seriouz commented 7 months ago

@Regenhardt @FroggieFrog can you resolve the conflicts and then merge #85 directly after this?