Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch website from Wyam to Statiq #453

Draft
wants to merge 1 commit into
base: develop
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -330,5 +330,6 @@ ASALocalRun/
.mfractor/

# Project specific
config.wyam.*
docs/cache/
docs/output/
BuildArtifacts/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "docs/theme"]
path = docs/theme
url = https://github.com/swissgrc/Docable.git
15 changes: 15 additions & 0 deletions docs/Documentation.csproj
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<OutputType>Exe</OutputType>
<TargetFramework>net9.0</TargetFramework>
<ImplicitUsings>enable</ImplicitUsings>
<Nullable>enable</Nullable>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="Statiq.Docs" Version="1.0.0-beta.17" />
<ProjectReference Include="theme\Docable.csproj" />
</ItemGroup>

</Project>
11 changes: 11 additions & 0 deletions docs/Program.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
return await Bootstrapper
.Factory
.CreateDocs(args)
.AddSetting(Docable.SiteKeys.Logo, "/assets/images/Icon.png")
.AddSetting(Keys.Host, "eoehen.github.io/arguard")
.AddSetting(Keys.LinksUseHttps, true)
.AddSetting(Docable.SiteKeys.RightSidebarHeadingLevel, 2)
.AddSetting(WebKeys.GenerateSearchIndex, true)
.AddSetting(WebKeys.AdditionalSearchResultFields, new List<string> { Keys.Excerpt })
.AddSetting(Statiq.Markdown.MarkdownKeys.MarkdownExtensions, "bootstrap")
.RunAsync();
8 changes: 0 additions & 8 deletions docs/config.wyam

This file was deleted.

Binary file removed docs/icons/android-icon-144x144.png
Binary file not shown.
Binary file removed docs/icons/android-icon-192x192.png
Binary file not shown.
Binary file removed docs/icons/android-icon-36x36.png
Binary file not shown.
Binary file removed docs/icons/android-icon-48x48.png
Binary file not shown.
Binary file removed docs/icons/android-icon-72x72.png
Binary file not shown.
Binary file removed docs/icons/android-icon-96x96.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-114x114.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-120x120.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-144x144.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-152x152.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-180x180.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-57x57.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-60x60.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-72x72.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-76x76.png
Binary file not shown.
Binary file removed docs/icons/apple-icon-precomposed.png
Binary file not shown.
Binary file removed docs/icons/apple-icon.png
Binary file not shown.
2 changes: 0 additions & 2 deletions docs/icons/browserconfig.xml

This file was deleted.

Binary file removed docs/icons/favicon-16x16.png
Binary file not shown.
Binary file removed docs/icons/favicon-32x32.png
Binary file not shown.
Binary file removed docs/icons/favicon-96x96.png
Binary file not shown.
Binary file removed docs/icons/favicon.ico
Binary file not shown.
41 changes: 0 additions & 41 deletions docs/icons/manifest.json

This file was deleted.

Binary file removed docs/icons/ms-icon-144x144.png
Binary file not shown.
Binary file removed docs/icons/ms-icon-150x150.png
Binary file not shown.
Binary file removed docs/icons/ms-icon-310x310.png
Binary file not shown.
Binary file removed docs/icons/ms-icon-70x70.png
Binary file not shown.
8 changes: 8 additions & 0 deletions docs/input/Shared/_Footer.cshtml
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<div class="row">
<div class="offset-lg-2 col-12 col-lg-8">
<div class="pt-2 font-size-sm text-muted text-center">
© @DateTime.Today.Year <a href="http://oehen.net" target="_blank">oehen.net</a> and <a href="https://github.com/eoehen/arguard/graphs/contributors" target="_blank">contributors</a> -
Website generated By <a class="text-muted" href="https://statiq.dev">Statiq</a>
</div>
</div>
</div>
50 changes: 0 additions & 50 deletions docs/input/_Bottom.cshtml

This file was deleted.

5 changes: 0 additions & 5 deletions docs/input/_Footer.cshtml

This file was deleted.

12 changes: 0 additions & 12 deletions docs/input/_Navbar.cshtml

This file was deleted.

144 changes: 0 additions & 144 deletions docs/input/assets/css/override.less

This file was deleted.

File renamed without changes.
File renamed without changes
3 changes: 0 additions & 3 deletions docs/input/assets/images/clippy.svg
Diff not rendered.
Binary file removed docs/input/assets/img/favicon.ico
Binary file not shown.
Binary file removed docs/input/assets/img/logo.png
Diff not rendered.
6 changes: 0 additions & 6 deletions docs/input/assets/js/anchor.min.js

This file was deleted.

Loading