mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
317 B
12 lines
317 B
using System;
|
|
|
|
namespace Volo.Abp.AspNetCore.Mvc.UI.Bootstrap.Demo;
|
|
|
|
public static class BootstrapUrlHelper
|
|
{
|
|
public const string BootstrapVersion = "5.3";
|
|
public static string GetDocUrl(string path)
|
|
{
|
|
return $"https://getbootstrap.com/docs/{BootstrapVersion}{path.EnsureStartsWith('/')}";
|
|
}
|
|
} |