-
Notifications
You must be signed in to change notification settings - Fork 0
/
BlogController.cs
54 lines (49 loc) · 1.5 KB
/
BlogController.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc;
using Website.Models.Blog;
namespace Website.Controllers
{
public partial class BlogController : Controller
{
//
// GET: /Blog/
public virtual ActionResult Index(string blogName)
{
var b = new Blog
{
Name = blogName,
Posts = new List<Post>
{
new Post
{
Name = "Primer post!",
Date = DateTime.Now,
Tags = new List<string>
{
"primer-post", "hola"
},
Comments = new List<Comment>
{
new Comment
{
Id = "2", Email = "[email protected]", PosterId = "5", PosterName = "Juan de los palotes", Text = "This seems to be working\r and even <b>some tags</b> work"
}
}
}
}
};
return View(b);
}
public virtual ActionResult Post(string id)
{
return View("Index");
}
public virtual ActionResult Tag(string blogName, string tag)
{
return View("Index");
}
}
}