We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3341f2f commit a0fc082Copy full SHA for a0fc082
_layouts/meetup.html
@@ -42,8 +42,10 @@ <h2>Charlas</h2>
42
{% assign speakers = speakers | push: site.data.people[speaker].name %}
43
{% endfor %}
44
45
- <h3>
46
- <span>{{ talk.title }}</span>
+ <h3 id="{{ talk.title | slugify }}">
+ <a href="#{{ talk.title | slugify }}">
47
+ <span>{{ talk.title }}</span>
48
+ </a>
49
<p>{{ speakers | join: ", " }}</p>
50
</h3>
51
_sass/meetups.scss
@@ -1,6 +1,11 @@
1
#meetups {
2
background-color: #F6EEEC;
3
4
+ h3 {
5
+ margin-top: -50px;
6
+ padding-top: 90px;
7
+ }
8
+
9
header {
10
background-color: #3967D1;
11
border: 0 solid black;
0 commit comments