Skip to content
This repository has been archived by the owner on Jul 19, 2024. It is now read-only.

Commit

Permalink
Public Web Site
Browse files Browse the repository at this point in the history
  • Loading branch information
eiximenis committed Dec 4, 2016
1 parent c78c598 commit 3fa86b2
Show file tree
Hide file tree
Showing 526 changed files with 221,592 additions and 0 deletions.
22 changes: 22 additions & 0 deletions PublicWeb/BikeSharing.Web.sln
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 14
VisualStudioVersion = 14.0.25420.1
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "BikeSharing.Web", "src\BikeSharing.Web\BikeSharing.Web.csproj", "{84952F58-05C5-4ED5-8ECF-8F0D77F25D76}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{84952F58-05C5-4ED5-8ECF-8F0D77F25D76}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{84952F58-05C5-4ED5-8ECF-8F0D77F25D76}.Debug|Any CPU.Build.0 = Debug|Any CPU
{84952F58-05C5-4ED5-8ECF-8F0D77F25D76}.Release|Any CPU.ActiveCfg = Release|Any CPU
{84952F58-05C5-4ED5-8ECF-8F0D77F25D76}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
EndGlobal
2 changes: 2 additions & 0 deletions PublicWeb/src/BikeSharing.Web/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Content/www/css
Content/www/js
26 changes: 26 additions & 0 deletions PublicWeb/src/BikeSharing.Web/.stylelintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
{
"rules": {
"block-no-empty": true,
"color-hex-case": "upper",
"declaration-colon-space-after": "always",
"declaration-colon-space-before": "never",
"declaration-block-no-duplicate-properties": true,
"declaration-block-properties-order": "alphabetical",
"function-comma-space-after": "always",
"function-url-quotes": "always",
"indentation": 4,
"media-feature-colon-space-after": "always",
"media-feature-colon-space-before": "never",
"media-feature-name-no-vendor-prefix": true,
"max-empty-lines": 1,
"number-leading-zero": "never",
"number-no-trailing-zeros": true,
"property-no-vendor-prefix": true,
"declaration-block-trailing-semicolon": "always",
"selector-list-comma-space-before": "never",
"selector-list-comma-newline-after": "always",
"selector-no-id": true,
"string-quotes": "single",
"value-no-vendor-prefix": true
}
}
20 changes: 20 additions & 0 deletions PublicWeb/src/BikeSharing.Web/App_Start/RouteConfig.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using System.Web.Mvc;
using System.Web.Routing;

namespace BikeSharing.Web
{
public class RouteConfig
{
public static void RegisterRoutes(RouteCollection routes)
{
routes.IgnoreRoute("{resource}.axd/{*pathInfo}");

routes.MapRoute(
name: "Default",
url: "{controller}/{action}/{id}",
defaults: new { controller= "Home", action = "Index", id = UrlParameter.Optional }
);
}
}
}

743 changes: 743 additions & 0 deletions PublicWeb/src/BikeSharing.Web/BikeSharing.Web.csproj

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions PublicWeb/src/BikeSharing.Web/Content/build/css/styles.css

Large diffs are not rendered by default.

Loading

0 comments on commit 3fa86b2

Please sign in to comment.