-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
31 changed files
with
2,510 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
@{ | ||
List<Tuple<string, string>> pages = new List<Tuple<string, string>> | ||
{ | ||
Tuple.Create("Documentation", Context.GetLink("docs")), | ||
Tuple.Create("API", Context.GetLink("api/Cake.AzureDevOps")) | ||
}; | ||
foreach(Tuple<string, string> p in pages) | ||
{ | ||
string active = Context.GetLink(Document).StartsWith(p.Item2) ? "active" : null; | ||
<li class="@active"><a href="@p.Item2">@Html.Raw(p.Item1)</a></li> | ||
} | ||
} |
Binary file not shown.
288 changes: 288 additions & 0 deletions
288
docs/input/assets/css/fonts/glyphicons-halflings-regular.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,37 @@ | ||
--- | ||
Title: Cake.AzureDevOps | ||
NoSidebar: true | ||
NoContainer: false | ||
NoContainer: true | ||
NoGutter: true | ||
--- | ||
|
||
<div class="container"> | ||
<h1>What is it?</h1> | ||
<div class="jumbotron"> | ||
<div class="container"> | ||
<h1 class="display-4">Cake.AzureDevOps</h1> | ||
<p> | ||
Cake addin for working with Azure DevOps.<br/> | ||
</p> | ||
<a class="btn btn-primary btn-lg" href="/Cake.AzureDevOps/docs/" role="button">Learn more</a> | ||
<a class="btn btn-primary btn-lg" href="/Cake.AzureDevOps/api/Cake.AzureDevOps/" role="button">API documentation</a> | ||
</div> | ||
</div> | ||
|
||
<div class="container"> | ||
<p style="height: 35px;"> | ||
<img alt="GitHub" src="https://img.shields.io/github/license/cake-contrib/Cake.AzureDevOps"> | ||
<img alt="GitHub release (latest SemVer)" src="https://img.shields.io/github/v/release/cake-contrib/Cake.AzureDevOps"> | ||
<img alt="Nuget" src="https://img.shields.io/nuget/dt/Cake.AzureDevOps"> | ||
</p> | ||
|
||
<p> | ||
The Azure DevOps Addin for <a href="http://cakebuild.net/" target="_blank">Cake</a> allows you to access Azure DevOps from Cake build scripts. | ||
</p> | ||
|
||
<p> | ||
The Azure DevOps Addin for <a href="http://cakebuild.net/" target="_blank">Cake</a> allows you to access Azure DevOps or Azure DevOps Server from Cake build scripts. | ||
<h3>Features</h3> | ||
<ul class="feature-list"> | ||
<li>Access to Azure Pipelines builds</li> | ||
<li>Access to Azure Repos pull requests</li> | ||
</ul> | ||
</p> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.