Skip to content
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

Added help & communication section #23

Merged
merged 12 commits into from
Mar 24, 2019
Merged
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
4 changes: 2 additions & 2 deletions _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ repository: parse-community/parse-community.github.io
facebook_username: parseit
twitter_username: parseplatform
github_username: parse-community
stackoverflow_tag: parse.com
stackoverflow_tag: parse-platform
serverfault_tag: parse

# Build settings
markdown: kramdown
exclude: [ Gemfile, Gemfile.lock, README.md, config.codekit ]

theme: jekyll-theme-cayman
theme: jekyll-theme-cayman
11 changes: 5 additions & 6 deletions css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -834,7 +834,7 @@ section {
width: 100%;
max-width: 650px;
margin: 0 auto;
height: 72px;
height: auto;
background: rgba(14, 105, 161, 0.03);
position: relative;
border: none;
Expand All @@ -843,7 +843,6 @@ section {
position: relative; }
.repoList .repoTitle h4, .repoList .repoTitle p, .repoList .repoDescription h4, .repoList .repoDescription p, .repoList .repoInfo h4, .repoList .repoInfo p {
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap; }
.repoList h4 {
margin: 16px 0px 4px 0px;
Expand All @@ -865,13 +864,13 @@ section {
.repoList .repoDescription {
opacity: 0.6;
margin: 0px;
padding-right: 24px;
padding-left: 24px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis; }
padding-bottom: 16px; }
@media screen and (max-width: 600px) {
.repoList .repoDescription {
padding-left: 16px; } }
padding-left: 16px;
padding-right: 16px; } }
.repoList .language {
text-align: right;
padding-right: 16px;
Expand Down
9 changes: 4 additions & 5 deletions css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ section{
width: 100%;
max-width: 650px;
margin: 0 auto;
height: 72px;
height: auto;
background: $fadedBlue;
position: relative;
border: none;
Expand All @@ -1053,7 +1053,6 @@ section{
position: relative;
h4, p{
text-overflow: ellipsis;
overflow: hidden;
white-space: nowrap;
}
}
Expand Down Expand Up @@ -1081,11 +1080,11 @@ section{
opacity: 0.6;
margin: 0px;
padding-left: 24px;
overflow: hidden;
white-space: nowrap;
text-overflow: ellipsis;
padding-right: 24px;
padding-bottom: 16px;
@media screen and (max-width: $smallWidth){
padding-left: 16px;
padding-right: 16px;
}
}
.language{
Expand Down
35 changes: 34 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,43 @@
slug: Parse + Open Source
---

<!-- Help / Communication section -->
<section class="communication" id="communication">
<h3>Help & Communication</h3>
<h6>Our preferred channels of communication for help, issues and disscussion.</h6>
<div class="tableWrapper">
<table>
<tr class="repoList">
<td>
<a href="https://stackoverflow.com/tags/{{ site.stackoverflow_tag }}"><h4>Stack Overflow <ins>parse-platform</ins> tag</h4><p class="repoDescription">Use for any code level questions related to the Parse Platform. Please also use other tags where appropriate, such as <ins>parse-server</ins>, <ins>parse-dashboard</ins>, <ins>parse-javascript-sdk</ins> and <ins>parse-cloud</ins>.</p></a>
</td>
</tr>
<tr class="repoList">
<td>
<a href="https://serverfault.com/tags/{{ site.serverfault_tag }}"><h4>Sever Fault <ins>parse</ins> tag</h4><p class="repoDescription">
Use for questions related to the hosting & maintenance of Parse Server.</p></a>
</td>
</tr>
<tr class="repoList">
<td>
<a href="//community.parseplatform.org"><h4>Community Forum</h4><p class="repoDescription">
Use for discussion relating to strategy and implementation.</p></a>
</td>
</tr>
<tr class="repoList">
<td>
<a href="https://github.com/{{ site.github_username }}"><h4>Github Issues</h4><p class="repoDescription">
Use for reporting bugs and making pull requests for specific repositories.</p></a>
</td>
</tr>
</table>
</div>
</section><!-- Help / Communication section -->

<!-- Parse Server section -->
<section class="parseServer" id="server">
<h3>Parse Server and Dashboard</h3>
<h6>The REST server and dashboard to manage your data</h6>
<h6>The REST server and dashboard to manage your data.</h6>
<div class="tableWrapper">
<table></table>
</div>
Expand Down