changing things

This commit is contained in:
unknown
2015-03-24 11:53:24 -04:00
parent 1d90431237
commit e7b205ef3b
2 changed files with 5 additions and 3 deletions

View File

@@ -14,12 +14,12 @@
.badges {
margin-right: 3px;
img{
img {
width: 52px;
height: 52px;
border-radius: 27px;
}
}
.stats-bar {

View File

@@ -7,7 +7,9 @@ namespace UntappedWidgetGenerator.Web
{
public IndexModule(IUntappedRepository repository )
{
Get["/"] = x => View["Views/Index/Index.cshtml", "tparnell"];
Get["/"] = x => {
return View["Views/Index/Index.cshtml", "tparnell"];
};
Get["/{username}/browse"] = x => View["Views/Index/Index.cshtml", (string)x.username];
Get["/{username}/html"] = parameters =>
{