things happened
This commit is contained in:
2
.gitignore
vendored
2
.gitignore
vendored
@@ -25,7 +25,7 @@ bld/
|
|||||||
# Visual Studio 2015 cache/options directory
|
# Visual Studio 2015 cache/options directory
|
||||||
.vs/
|
.vs/
|
||||||
# Uncomment if you have tasks that create the project's static files in wwwroot
|
# Uncomment if you have tasks that create the project's static files in wwwroot
|
||||||
wwwroot/
|
**/wwwroot/lib/
|
||||||
|
|
||||||
# MSTest test Results
|
# MSTest test Results
|
||||||
[Tt]est[Rr]esult*/
|
[Tt]est[Rr]esult*/
|
||||||
|
|||||||
@@ -1,18 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
|
|
||||||
namespace DotNetMashup.Web.Model
|
|
||||||
{
|
|
||||||
public class BlogPost : IExternalData
|
|
||||||
{
|
|
||||||
public string Title { get; set; }
|
|
||||||
public string Content { get; set; }
|
|
||||||
public DateTime PublishedDate { get; set; }
|
|
||||||
public string Summary { get; set; }
|
|
||||||
public string Localink { get; set; }
|
|
||||||
public string OriginalLink { get; set; }
|
|
||||||
public Author Author { get; set; }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,7 +0,0 @@
|
|||||||
@{
|
|
||||||
ViewData["Title"] = "About";
|
|
||||||
}
|
|
||||||
<h2>@ViewData["Title"].</h2>
|
|
||||||
<h3>@ViewData["Message"]</h3>
|
|
||||||
|
|
||||||
<p>Use this area to provide additional information.</p>
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
@{
|
|
||||||
ViewData["Title"] = "Contact";
|
|
||||||
}
|
|
||||||
<h2>@ViewData["Title"].</h2>
|
|
||||||
<h3>@ViewData["Message"]</h3>
|
|
||||||
|
|
||||||
<address>
|
|
||||||
One Microsoft Way<br />
|
|
||||||
Redmond, WA 98052-6399<br />
|
|
||||||
<abbr title="Phone">P:</abbr>
|
|
||||||
425.555.0100
|
|
||||||
</address>
|
|
||||||
|
|
||||||
<address>
|
|
||||||
<strong>Support:</strong> <a href="mailto:Support@example.com">Support@example.com</a><br />
|
|
||||||
<strong>Marketing:</strong> <a href="mailto:Marketing@example.com">Marketing@example.com</a>
|
|
||||||
</address>
|
|
||||||
3
src/DotNetMashup.Web/wwwroot/_references.js
Normal file
3
src/DotNetMashup.Web/wwwroot/_references.js
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
/// <autosync enabled="true" />
|
||||||
|
/// <reference path="../gulpfile.js" />
|
||||||
|
/// <reference path="js/site.js" />
|
||||||
59
src/DotNetMashup.Web/wwwroot/css/site.css
Normal file
59
src/DotNetMashup.Web/wwwroot/css/site.css
Normal file
@@ -0,0 +1,59 @@
|
|||||||
|
/* Wrapping element */
|
||||||
|
/* Set some basic padding to keep content from hitting the edges */
|
||||||
|
.body-content {
|
||||||
|
padding-left: 15px;
|
||||||
|
padding-right: 15px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Set widths on the form inputs since otherwise they're 100% wide */
|
||||||
|
input,
|
||||||
|
select,
|
||||||
|
textarea {
|
||||||
|
max-width: 280px;
|
||||||
|
}
|
||||||
|
|
||||||
|
/* Carousel */
|
||||||
|
.carousel-caption {
|
||||||
|
z-index: 10 !important;
|
||||||
|
}
|
||||||
|
|
||||||
|
.carousel-caption p {
|
||||||
|
font-size: 20px;
|
||||||
|
line-height: 1.4;
|
||||||
|
}
|
||||||
|
|
||||||
|
@media (min-width: 768px) {
|
||||||
|
.carousel-caption {
|
||||||
|
z-index: 10 !important;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
.tile {
|
||||||
|
border-radius: 25px;
|
||||||
|
border: 1px solid #03A9F4;
|
||||||
|
background-color: #F5F5F5;
|
||||||
|
margin-bottom: 5px;
|
||||||
|
padding: 10px;
|
||||||
|
white-space: pre-wrap;
|
||||||
|
}
|
||||||
|
|
||||||
|
body {
|
||||||
|
padding-top: 50px;
|
||||||
|
background-color: #616161;
|
||||||
|
}
|
||||||
|
|
||||||
|
footer {
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: #F5F5F5;
|
||||||
|
}
|
||||||
|
|
||||||
|
.img {
|
||||||
|
border-radius: 50%;
|
||||||
|
}
|
||||||
|
.pill{
|
||||||
|
border-radius: 50%;
|
||||||
|
background-color: #F5F5F5;
|
||||||
|
padding: 10px;
|
||||||
|
border: 1px solid #03A9F4;
|
||||||
|
}
|
||||||
1
src/DotNetMashup.Web/wwwroot/css/site.min.css
vendored
Normal file
1
src/DotNetMashup.Web/wwwroot/css/site.min.css
vendored
Normal file
@@ -0,0 +1 @@
|
|||||||
|
.pill,.tile{border:1px solid #03A9F4}.body-content{padding-left:15px;padding-right:15px}input,select,textarea{max-width:280px}.carousel-caption{z-index:10!important}.carousel-caption p{font-size:20px;line-height:1.4}@media (min-width:768px){.carousel-caption{z-index:10!important}}.tile{border-radius:25px;background-color:#F5F5F5;margin-bottom:5px;padding:10px;white-space:pre-wrap}.img,.pill{border-radius:50%}body{padding-top:50px;background-color:#616161}.pill,footer{background-color:#F5F5F5;padding:10px}footer{width:100%}
|
||||||
BIN
src/DotNetMashup.Web/wwwroot/favicon.ico
Normal file
BIN
src/DotNetMashup.Web/wwwroot/favicon.ico
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 31 KiB |
BIN
src/DotNetMashup.Web/wwwroot/images/ASP-NET-Banners-01.png
Normal file
BIN
src/DotNetMashup.Web/wwwroot/images/ASP-NET-Banners-01.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.1 KiB |
BIN
src/DotNetMashup.Web/wwwroot/images/ASP-NET-Banners-02.png
Normal file
BIN
src/DotNetMashup.Web/wwwroot/images/ASP-NET-Banners-02.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 8.4 KiB |
BIN
src/DotNetMashup.Web/wwwroot/images/Banner-01-Azure.png
Normal file
BIN
src/DotNetMashup.Web/wwwroot/images/Banner-01-Azure.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 14 KiB |
BIN
src/DotNetMashup.Web/wwwroot/images/Banner-02-VS.png
Normal file
BIN
src/DotNetMashup.Web/wwwroot/images/Banner-02-VS.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 12 KiB |
1
src/DotNetMashup.Web/wwwroot/js/site.js
Normal file
1
src/DotNetMashup.Web/wwwroot/js/site.js
Normal file
@@ -0,0 +1 @@
|
|||||||
|
// Write your Javascript code.
|
||||||
0
src/DotNetMashup.Web/wwwroot/js/site.min.js
vendored
Normal file
0
src/DotNetMashup.Web/wwwroot/js/site.min.js
vendored
Normal file
11
src/DotNetMashup.Web/wwwroot/web.config
Normal file
11
src/DotNetMashup.Web/wwwroot/web.config
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<configuration>
|
||||||
|
<system.webServer>
|
||||||
|
<handlers>
|
||||||
|
<remove name="ExtensionlessUrlHandler-Integrated-4.0" />
|
||||||
|
<remove name="OPTIONSVerbHandler" />
|
||||||
|
<remove name="TRACEVerbHandler" />
|
||||||
|
<add name="ExtensionlessUrlHandler-Integrated-4.0" path="*." verb="*" type="System.Web.Handlers.TransferRequestHandler" preCondition="integratedMode,runtimeVersionv4.0" />
|
||||||
|
</handlers>
|
||||||
|
</system.webServer>
|
||||||
|
</configuration>
|
||||||
Reference in New Issue
Block a user