Skip to content

documentation for Hljomaholl endpoint #13

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
51 changes: 51 additions & 0 deletions app/views/apis/hljomaholl.jade
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
.offset#endpoint-hljomaholl
article.article.dark.endpoint
.limit.padding
hgroup
h3 Hljómahöll - Concert hall in Reykjanesbær
h4 Source: <a href="http://hljomaholl.is">Hljómahöll</a>
.box.light.api
.content.title.blue
.method get
.path: a(href="http://apis.is/hljomaholl", target="_blank") /hljomaholl
.content
p Get a list of upcoming events at Hljómahöllin
h5.leading.collapse-next curl demo
pre.prettyprint.curl-demo.
curl -X GET 'apis.is/hljomaholl' -H 'accept-version:1' -H 'Content-Type: application/json'
h5.leading.collapse-next jQuery demo
pre.prettyprint.linenums.jquery-demo.
$.ajax({
'url': 'http://apis.is/hljomaholl',
'type': 'GET',
'dataType': 'json',
'success': function(response) {
console.log(response);
}
});
h5.leading.collapse-next Response
pre.prettyprint.linenums.response.
{
"results": [
{
"date": "laugardagur 2. maí",
"time": "23:30",
"image":"http://www.hljomaholl.is/sites/default/files/styles/medium/public/screen_shot_2015-04-29_at_14.23.59_0.png?itok=HWO_yAA8",
"title":"Karlakór Keflavíkur",
"description":"Vortónleikar Karlakórs Keflavíkur verða í Stapa ( Hljómahöll )Reykjanesbæ mánudaginn 4. maí og miðvikudaginn 6. maí.",
"location":"Stapi",
"buyTicketURL":false,
"moreInfoURL":"http://www.hljomaholl.is/karlakor-keflavikur"
},
{
"date": "laugardagur 2. maí",
"time": "23:30",
"image":"http://www.hljomaholl.is/sites/default/files/styles/medium/public/screen_shot_2015-04-22_at_12.03.39.png?itok=yuiuZkp1",
"title":"Brúðkaup Fígarós",
"description":"Óperufélagið Norðuróp Í samvinnu við Tónlistarskóla Reykjanesbæjar og Hljómahöll í Reykjanesbæ, setur upp gamanóperuna „Brúðkaup Fígarós“ eftir Wolfgang Amadeus Mozart við texta Lorenzo da Ponte.",
"location":"Berg",
"buyTicketURL":"https://www.tix.is/is/event/663/",
"moreInfoURL":"http://www.hljomaholl.is/brudkaup-figaros"
}
]
}
1 change: 1 addition & 0 deletions app/views/home.jade
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ block apis
include apis/weather
include apis/tv
include apis/sarschool
include apis/hljomaholl

block footer
.limit.padding
Expand Down