forked from pytorch/pytorch.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog_detail.html
46 lines (40 loc) · 1.41 KB
/
blog_detail.html
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
<!DOCTYPE html>
<html lang="en">
{% include head.html %}
<body class="blog">
<div class="main-background blog-background blog-detail-background"></div>
<div class="container-fluid header-holder blog-detail-header">
<div class="container">
{% include nav.html %}
</div>
</div>
<div class="jumbotron jumbotron-fluid blog-detail-jumbotron">
<div class="container blog-detail-container">
<p class="featured-post">{{ page.date | date: '%B %d, %Y' }}</p>
<h1>
<a class="blog-title">{{ page.title }}</a>
</h1>
</div>
</div>
<div class="main-content-wrapper blog-detail-wrapper">
<div class="main-content blog-detail-content">
<div class="container">
<img src="{{ site.baseurl }}/assets/images/logo-icon.svg" class="img-fluid author-icon">
<article class="pytorch-article">
<p class="author">
by
{% if page.author %}
{{ page.author }}
{% else %}
{{ site.default_author }}
{% endif %}
</p>
{{ content }}
</article>
</div>
</div>
</div>
<!-- {% include similar_posts_module.html %} -->
{% include footer.html %}
</body>
</html>