@RequestMapping(value = "/!{name}", method = RequestMethod.GET)
public String posts(@PathVariable String name, @RequestParam(required = false) String replyto, @RequestParam(required = false) String replypid, @RequestParam(required = false) Integer page, Model model) {
checkUser(name);
String targetUid = retwis.findUid(name);
model.addAttribute("post", new Post());
model.addAttribute("name", name);
model.addAttribute("followers", retwis.getFollowers(targetUid));
model.addAttribute("following", retwis.getFollowing(targetUid));
if (RetwisSecurity.isSignedIn()) {