Skip to content

Commit 6b874b5

Browse files
committed
Add REST API Guide, link to Parse Server Modules, and link to support sites.
1 parent 510a99a commit 6b874b5

File tree

4 files changed

+22
-1
lines changed

4 files changed

+22
-1
lines changed

_includes/footer.html

+3-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@
33
<img src="img/openSourceIllustration.svg" alt="Parse open source illustration" class="footerImage">
44
<div class="needHelp">
55
<h5>Need Help?</h5>
6-
<p><a href="{{ site.support_url }}" target="_blank">Get Support</a></p>
6+
<p><a href="http://stackoverflow.com/tags/{{ site.stackoverflow_tag }}" target="_blank">Code-level questions</a></p>
7+
<p><a href="http://serverfault.com/tags/{{ site.serverfault_tag }}" target="_blank">Deployment and server maintenance</a></p>
8+
<p><a href="{{ site.support_url }}#report" target="_blank">Migration assistance</a></p>
79
</div>
810
<div class="socialLinks">
911
<h5>Stay Connected</h5>

img/rest.svg

+1
Loading

index.html

+12
Original file line numberDiff line numberDiff line change
@@ -370,6 +370,18 @@ <h4>CLI for Cloud Code</h4>
370370
</a>
371371
</div>
372372
</div>
373+
<div class="repo restApiRepo">
374+
<div class="repoTitle">
375+
<img src="img/rest.svg" alt="" class="SDKLogo">
376+
<h4>REST API</h4>
377+
</div>
378+
<a href="//parse.com/docs/rest/guide" target="_blank">
379+
<div class="repoLink">
380+
<p>Guide</p>
381+
</div>
382+
</a>
383+
</div>
384+
373385
</div>
374386
</section><!-- SDKs section -->
375387

js/main.js

+6
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ $(document).ready(function(){
1818
sectionTitle.append("<tr class='repoList'><td><a href='" + url + "' target='_blank'><h4>" + title + "</h4><p class='repoDescription'>" + description + "</p></td><td class='language metadata'>" + language + "</a></td><td class='metadata'><img src='img/starsDark.svg' alt='' class='icon'>" + stars + "</td><td class='metadata'><img src='img/forksDark.svg' alt='' class='icon'>" + forks + "</td></tr>");
1919
}
2020

21+
function addNonRepoToSection(sectionTitle, url, title, description, forks, stars, language){
22+
sectionTitle.append("<tr class='repoList'><td colspan='4'><a href='" + url + "' target='_blank'><h4>" + title + "</h4><p class='repoDescription'>" + description + "</p></td></tr>");
23+
}
24+
2125
if (typeof gitJson !== 'undefined'){
2226
for (var j = 0; j < gitJson.length; j++) {
2327
var title = gitJson[j].name,
@@ -126,6 +130,8 @@ $(document).ready(function(){
126130
addToSection($("section.other table"), url, title, description, forks, stars, language);
127131
}
128132
}
133+
134+
addNonRepoToSection($("section.parseServer table"), "https://github.com/parse-server-modules", "parse-server-modules", "Community Organization for non-core Parse Server modules and adapters");
129135
}
130136

131137
//write total forks, stars and repos into the page

0 commit comments

Comments
 (0)