mirror of
https://github.com/seigler/dash-docs
synced 2025-07-27 09:46:12 +00:00
Add a pre-populated "Submit an event" link on the "Events" page
This commit is contained in:
parent
1495be8b70
commit
7c05b2f693
4 changed files with 33 additions and 5 deletions
|
@ -228,6 +228,10 @@ body{
|
||||||
zoom:1;
|
zoom:1;
|
||||||
display:inline;
|
display:inline;
|
||||||
}
|
}
|
||||||
|
.eventtable span a{
|
||||||
|
zoom:1;
|
||||||
|
display:inline;
|
||||||
|
}
|
||||||
|
|
||||||
.alert-message a:hover,
|
.alert-message a:hover,
|
||||||
.alert-message a:hover:link,
|
.alert-message a:hover:link,
|
||||||
|
|
|
@ -1754,6 +1754,30 @@ h2 .rssicon{
|
||||||
.eventtable div div:first-child+div+div{
|
.eventtable div div:first-child+div+div{
|
||||||
width:300px;
|
width:300px;
|
||||||
}
|
}
|
||||||
|
.eventtable span a,
|
||||||
|
.eventtable span a:link,
|
||||||
|
.eventtable span a:active,
|
||||||
|
.eventtable span a:visited{
|
||||||
|
display:inline-block;
|
||||||
|
padding:6px 12px;
|
||||||
|
margin:15px 0 30px 0;
|
||||||
|
font-size:115%;
|
||||||
|
color:#fff;
|
||||||
|
border:1px solid #d57700;
|
||||||
|
background-color:#ee9209;
|
||||||
|
background-image:-o-linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
background-image:-moz-linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
background-image:-webkit-linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
background-image:-ms-linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
background-image:linear-gradient(bottom, #e28700 14%, #ee9209 70%);
|
||||||
|
-webkit-border-radius:3px;
|
||||||
|
-moz-border-radius:3px;
|
||||||
|
border-radius:3px;
|
||||||
|
}
|
||||||
|
.eventtable span a:hover{
|
||||||
|
background-image:none;
|
||||||
|
color:#fff;
|
||||||
|
}
|
||||||
|
|
||||||
.detectmobile{
|
.detectmobile{
|
||||||
width:0;
|
width:0;
|
||||||
|
|
|
@ -43,10 +43,9 @@ map.addLayer(markers);
|
||||||
{% filter_for p in site.conferences sort_by:date %}
|
{% filter_for p in site.conferences sort_by:date %}
|
||||||
<div><div>{{ p.date | date:"%Y-%m-%d" }}</div><div><a href="{{ p.link | htmlescape }}">{{ p.title | htmlescape }}</a></div><div>{{ p.city | htmlescape }}, {{ p.country | htmlescape }}</div></div>
|
<div><div>{{ p.date | date:"%Y-%m-%d" }}</div><div><a href="{{ p.link | htmlescape }}">{{ p.title | htmlescape }}</a></div><div>{{ p.city | htmlescape }}, {{ p.country | htmlescape }}</div></div>
|
||||||
{% endfilter_for %}
|
{% endfilter_for %}
|
||||||
|
<span><a href="https://github.com/bitcoin/bitcoin.org/issues/new?title=New%20event&body=date%3A%202014-00-00%0Atitle%3A%20%22%22%0Avenue%3A%20%22%22%0Aaddress%3A%20%22%22%0Acity%3A%20%22%22%0Acountry%3A%20%22%22%0Alink%3A%20%22%22">{% translate eventsubmit %}</a></span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<ul>
|
<p>{% translate meetupgroup %}</p>
|
||||||
<li>{% translate meetupgroup %}</li>
|
<p>{% translate meetupbitcointalk %}</p>
|
||||||
<li>{% translate meetupbitcointalk %}</li>
|
<p>{% translate meetupwiki %}</p>
|
||||||
<li>{% translate meetupwiki %}</li>
|
|
||||||
</ul>
|
|
||||||
|
|
|
@ -211,6 +211,7 @@ en:
|
||||||
pagetitle: "Conferences and events"
|
pagetitle: "Conferences and events"
|
||||||
pagedesc: "Find events, conferences and meetups all over the world."
|
pagedesc: "Find events, conferences and meetups all over the world."
|
||||||
upcoming: "Upcoming events and conferences"
|
upcoming: "Upcoming events and conferences"
|
||||||
|
eventsubmit: "Submit an event"
|
||||||
meetupbitcointalk: "<a href=\"https://bitcointalk.org/index.php?board=86.0\">Bitcoin meetups on BitcoinTalk</a>"
|
meetupbitcointalk: "<a href=\"https://bitcointalk.org/index.php?board=86.0\">Bitcoin meetups on BitcoinTalk</a>"
|
||||||
meetupwiki: "<a href=\"https://en.bitcoin.it/wiki/Meetups\">Bitcoin meetups on the Wiki</a>"
|
meetupwiki: "<a href=\"https://en.bitcoin.it/wiki/Meetups\">Bitcoin meetups on the Wiki</a>"
|
||||||
meetupgroup: "<a href=\"http://bitcoin.meetup.com/\">Bitcoin meetup groups</a>"
|
meetupgroup: "<a href=\"http://bitcoin.meetup.com/\">Bitcoin meetup groups</a>"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue