Skip to content

Commit 8a132ca

Browse files
committed
Add fonts to local and remove Google Analytics.
1 parent fa445f0 commit 8a132ca

21 files changed

+139
-36
lines changed

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/AbpCompanyName.AbpProjectName.Web.Mvc.csproj

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,26 @@
1616
</PropertyGroup>
1717

1818
<ItemGroup>
19+
<Content Include="wwwroot\fonts\material-icons\materialicons.css" />
20+
<Content Include="wwwroot\fonts\material-icons\materialicons.woff2" />
1921
<Content Include="wwwroot\fonts\materialicons.css" />
2022
<Content Include="wwwroot\fonts\materialicons.woff2" />
23+
<Content Include="wwwroot\fonts\roboto.css" />
24+
<Content Include="wwwroot\fonts\roboto\-2n2p-_Y08sg57CNWQfKNvesZW2xOQ-xsNqO47m55DA.woff2" />
25+
<Content Include="wwwroot\fonts\roboto\77FXFjRbGzN4aCrSFhlh3hJtnKITppOI_IvcXXDNrsc.woff2" />
26+
<Content Include="wwwroot\fonts\roboto\97uahxiqZRoncBaCEI3aWxJtnKITppOI_IvcXXDNrsc.woff2" />
27+
<Content Include="wwwroot\fonts\roboto\CWB0XYA8bzo0kSThX0UTuA.woff2" />
28+
<Content Include="wwwroot\fonts\roboto\d-6IYplOFocCacKzxwXSOFtXRa8TVwTICgirnJhmVJw.woff2" />
29+
<Content Include="wwwroot\fonts\roboto\ek4gzZ-GeXAPcSbHtCeQI_esZW2xOQ-xsNqO47m55DA.woff2" />
30+
<Content Include="wwwroot\fonts\roboto\Fcx7Wwv8OzT71A3E1XOAjvesZW2xOQ-xsNqO47m55DA.woff2" />
31+
<Content Include="wwwroot\fonts\roboto\isZ-wbCXNKAbnjo6_TwHThJtnKITppOI_IvcXXDNrsc.woff2" />
32+
<Content Include="wwwroot\fonts\roboto\jSN2CGVDbcVyCnfJfjSdfBJtnKITppOI_IvcXXDNrsc.woff2" />
33+
<Content Include="wwwroot\fonts\roboto\mErvLBYg_cXG3rLvUsKT_fesZW2xOQ-xsNqO47m55DA.woff2" />
34+
<Content Include="wwwroot\fonts\roboto\NdF9MtnOpLzo-noMoG0miPesZW2xOQ-xsNqO47m55DA.woff2" />
35+
<Content Include="wwwroot\fonts\roboto\PwZc-YbIL414wB9rB1IAPRJtnKITppOI_IvcXXDNrsc.woff2" />
36+
<Content Include="wwwroot\fonts\roboto\roboto.css" />
37+
<Content Include="wwwroot\fonts\roboto\u0TOpm082MNkS5K0Q4rhqvesZW2xOQ-xsNqO47m55DA.woff2" />
38+
<Content Include="wwwroot\fonts\roboto\UX6i4JxQDm3fVTc1CPuwqhJtnKITppOI_IvcXXDNrsc.woff2" />
2139
<Content Include="wwwroot\images\user-img-background.jpg" />
2240
<Content Include="wwwroot\images\user.png" />
2341
<Content Include="wwwroot\view-resources\Views\Account\_Layout.less" />

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Account/_Layout.cshtml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@
2626

2727
<environment names="Development">
2828
<!-- TODO: Bundles! -->
29-
<!-- Google Fonts -->
30-
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
31-
<link href="~/fonts/materialicons.css" rel="stylesheet" asp-append-version="true" />
29+
30+
<!-- Fonts -->
31+
<link href="~/fonts/roboto/roboto.css" rel="stylesheet" asp-append-version="true" />
32+
<link href="~/fonts/material-icons/materialicons.css" rel="stylesheet" asp-append-version="true" />
3233

3334
<!-- ~/Bundles/vendor/css -->
3435
<link rel="stylesheet" href="~/lib/jquery-ui/themes/base/all.css" asp-append-version="true" />

aspnet-core/src/AbpCompanyName.AbpProjectName.Web.Mvc/Views/Shared/_Layout.cshtml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,10 @@
3030
<title>AbpProjectName</title>
3131

3232
<environment names="Development">
33-
<!-- Google Fonts -->
34-
<link href="https://fonts.googleapis.com/css?family=Roboto:400,700&subset=latin,cyrillic-ext" rel="stylesheet" type="text/css">
35-
<link href="~/fonts/materialicons.css" rel="stylesheet" asp-append-version="true" />
33+
34+
<!-- Fonts -->
35+
<link href="~/fonts/roboto/roboto.css" rel="stylesheet" asp-append-version="true" />
36+
<link href="~/fonts/material-icons/materialicons.css" rel="stylesheet" asp-append-version="true" />
3637

3738
<!-- ~/Bundles/vendor/css TODO: Update bundle! -->
3839
<link rel="stylesheet" href="~/plugins/bootstrap/css/bootstrap.css" asp-append-version="true" />

0 commit comments

Comments
 (0)