1234567891011121314151617181920212223242526272829303132 |
- <div class="post-container">
- <div class="post-actions">
- <ul>
- <li><a ng-href="/a/news"><i class="material-icons">arrow_back</i></a></li>
- </ul>
- <ul>
- <li><a><i class="material-icons">edit</i></a></li>
- </ul>
- </div>
- <h1>{{post.title}}</h1>
- <h5>{{post.subtitle}}</h5>
- <div ng-bind-html=post.text></div>
- </div>
- <style>
- figure {
- margin: 1em 0px;
- }
- .post-actions {
- width: 100%;
- display: flex;
- justify-content: space-between;
- }
- .post-container {
- width: 740px;
- margin: 60px auto;
- }
- </style>
|