mirror of
https://github.com/btcpayserver/btcpayserver.git
synced 2025-02-23 14:40:36 +01:00
* Remove deprecated CSS options Closes #5945. * Greenfield: Add brandColor to store APIs Closes #5946. * Migrate file IDs to URLs Closes #5953. * Greenfield: Add CSS and logo URL to store settings API Closes #5945. * Add migration test * Store and Server branding can reference file's via fileid:ID * Add PaymentSoundUrl to Store API --------- Co-authored-by: nicolas.dorier <nicolas.dorier@gmail.com>
9 lines
313 B
Text
9 lines
313 B
Text
@model (string Title, StoreBrandingViewModel StoreBranding)
|
|
|
|
<header class="store-header" v-pre>
|
|
@if (!string.IsNullOrEmpty(Model.StoreBranding.LogoUrl))
|
|
{
|
|
<img src="@Model.StoreBranding.LogoUrl" alt="@Model.Title" class="store-logo"/>
|
|
}
|
|
<h1 class="store-name">@Model.Title</h1>
|
|
</header>
|