Skip to content

Commit 857e41a

Browse files
committed
Remove Highlights box in blog
1 parent 5b7555a commit 857e41a

5 files changed

+0
-36
lines changed

_includes/blog-list.html

Lines changed: 0 additions & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -39,37 +39,5 @@ <h2><a href="{{post.url}}">{{post.title}}</a></h2>
3939
{% assign urlPath = urlPath | split: '/' | join: '/' | remove_first: '/' %}
4040
{% include paginator.html urlPath=urlPath %}
4141
</div>
42-
{% assign highlights = "" | split: "," %}
43-
{% for post in site.posts %}
44-
{% if post.isHighlight == true %}
45-
{% assign highlights = highlights | push: post %}
46-
{% endif %}
47-
{% endfor %}
48-
49-
{% for post in highlights %}
50-
{% if forloop.first %}
51-
<div class="content-nav-blog">
52-
<div class="inner-box">
53-
<h5>Highlights</h5>
54-
<div class="blog-list-nav">
55-
{% endif %}
56-
<div class="blog-list-nav-item">
57-
<h4><a href="{{post.url}}">{{post.title}}</a></h4>
58-
{% if post.by %}<p>{{post.by}}</p>{% endif %}
59-
{% if post.tags %}
60-
{% for tag in post.tags %}
61-
<ul class="tag-list">
62-
<li class="tag-item">{{tag}}</li>
63-
</ul>
64-
{% endfor %}
65-
{% endif %}
66-
</div>
67-
{% if forloop.last %}
68-
</div>
69-
</div>
70-
</div>
71-
{% endif %}
72-
{% endfor %}
73-
7442
</div>
7543
</section>

_posts/2016-12-07-implicit-function-types.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
category: blog
33
title: Implicit Function Types
44
by: Martin Odersky
5-
isHighlight: true
65
---
76

87
I just made the [first pull request](https://github.com/scala/scala3/pull/1775) to add _implicit function types_ to

_posts/2016-12-13-sip-and-advisor-meetings.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ category: blog
33
title: "Scala Center Advisory Board and SIP Meeting Results"
44
by: Seth Tisue
55
tags: ["scala center", "meetings"]
6-
isHighlight: true
76
---
87

98
Brief summaries of both meetings follow, with links to

_posts/2019-12-18-road-to-scala-3.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ layout: blog-detail
33
post-type: blog
44
by: Lukas Rytz, Adriaan Moors, Martin Odersky
55
title: "Scala 2 Roadmap Update: the Road to Scala 3"
6-
isHighlight: true
76
---
87

98
Together with the Scala 3 team at EPFL (aka the Dotty team), led by Martin Odersky, we have decided that, rather than developing Scala 2.14, our efforts should go to Scala 3 instead.

_posts/2021-01-12-configuring-and-suppressing-warnings.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ layout: blog-detail
33
post-type: blog
44
by: Lukas Rytz
55
title: "Configuring and suppressing warnings in Scala"
6-
isHighlight: true
76
---
87

98
Scala 2.13.2 introduced the `-Wconf` compiler flag to globally configure reporting of warnings, and the `@nowarn` annotation to locally suppress them. This addition to Scala 2.13 proved very popular, so it was backported to 2.12 and just released in 2.12.13. Having more control over compiler warnings makes them a lot more valuable:

0 commit comments

Comments
 (0)