-
Notifications
You must be signed in to change notification settings - Fork 92
/
Copy pathindex.html
69 lines (58 loc) · 2.26 KB
/
index.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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
layout: default
---
<div class="inner-container padded">
<div class="-row">
<div class="-col8">
<div class="posts">
{% include posts.html %}
</div>
</div>
<div class="-col4">
<div class="sidebar media-padded">
<section>
{% include search.html %}
</section>
<section>
<p><a href="{{ site.baseurl }}/feed">Subscribe via RSS Feed</a></p>
</section>
<section>
<div class="-row">
<div class="-col6"><h3 class="h6">Tags</h3></div>
<div class="-col6"></div>
</div>
{% for tag in site.tags limit:10 %}
{% assign tagCount = 0 %}
{% assign currentTag = tag | first %}
{% for post in site.posts %}
{% if post.tags contains currentTag %}
{% assign tagCount = tagCount | plus: 1 %}
{% endif %}
{% endfor %}
<a href="{{ site.baseurl }}/tags/{{ tag | first | replace: '.', '-' }}"><span class="postTag">{{ tag | first }}</span></a>
{% endfor %}
</section>
<section>
<div class="-row">
<div class="-col6"><h3 class="h6">Contributors</h3></div>
<div class="-col6 _textRight"><p><a href="{{ site.baseurl }}/authors">See all</a></p></div>
</div>
{% include authors.html %}
</section>
<section>
<div class="-row">
<div class="-col6"><h3 class="h6">About Us</h3></div>
<div class="-col6"></div>
</div>
<p>Welcome! We are <a href="http://stackexchange.com/">Stack Exchange</a>, home of <a href="https://stackoverflow.com/">Stack Overflow</a>, <a href="https://careers.stackoverflow.com/">Stack Overflow Careers</a>, and <a href="http://stackexchange.com/sites">over 100 Q&A sites</a> part of the Stack Exchange network. In addition to writing a lot of code, we like to write about our coding experiences and other things we’re doing, both at the company and in the tech space as a whole.</p>
<p>If you’d like to keep up with company initiatives and other happenings at Stack Exchange, check out the Company News channel. If you want to learn about some of our coding projects, mishaps, and other tech details, explore the Engineering channel.</p>
<p>We hope you
</div>
</div>
</div>
</div>
<script type="text/javascript">
var pagination = true;
var top_active = "home";
console.log("{{ site.baseurl }}");
</script>