Skip to content
Merged
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,7 @@ bld/

# Visual Studio 2015/2017 cache/options directory
.vs/
.vscode/
# Uncomment if you have tasks that create the project's static files in wwwroot
#wwwroot/

Expand Down Expand Up @@ -353,4 +354,5 @@ MigrationBackup/
App_Data/

# Modules
*/Stott.Optimizely.RobotsHandler/modules/**
*/Stott.Optimizely.RobotsHandler/modules/**
*/OptimizelyTwelveTest/modules/**
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,16 @@
<Authors>Mark Stott</Authors>
<PackageProjectUrl>https://github.com/GeekInTheNorth/Stott.Optimizely.RobotsHandler</PackageProjectUrl>
<RepositoryUrl>https://github.com/GeekInTheNorth/Stott.Optimizely.RobotsHandler</RepositoryUrl>
<Copyright>Mark Stott 2024</Copyright>
<Copyright>Mark Stott 2025</Copyright>
<PackageLicenseFile>LICENSE.txt</PackageLicenseFile>
<Description>Provides an Admin interface in Optimizely CMS 12 for managing robots.txt files. A controller responds to the /robots.txt path and returns the appropriate content specific to the site.</Description>
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
<NeutralLanguage>en-GB</NeutralLanguage>
<PackageTags>Optimizely CMS Robots Robots_txt</PackageTags>
<AssemblyVersion>6.0.0</AssemblyVersion>
<FileVersion>6.0.0</FileVersion>
<Version>6.0.0</Version>
<PackageReleaseNotes>Add support for Opal Tools and Headless solutions.</PackageReleaseNotes>
<AssemblyVersion>6.0.1</AssemblyVersion>
<FileVersion>6.0.1</FileVersion>
<Version>6.0.1</Version>
<PackageReleaseNotes>Fix errors for Optimizely Notification Service.</PackageReleaseNotes>
<PackageReadmeFile>README.md</PackageReadmeFile>
<RepositoryType>git</RepositoryType>
</PropertyGroup>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@
<link href="@Model.CssFile" rel="stylesheet">
</head>
<body>
@Html.AntiForgeryToken()
@Html.CreatePlatformNavigationMenu()
<div @Html.ApplyPlatformNavigation()>
<div id="stott-robots-ui"></div>
Expand Down
Loading