-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
- Loading branch information
Showing
6 changed files
with
170 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,43 @@ | ||
<template> | ||
<layout> | ||
<div class="min-vh100-fh"> | ||
<a | ||
role="button" | ||
class="d-inline-flex align-center mt-4 pl-4" | ||
@click="back()" | ||
> | ||
<svg | ||
width="8" | ||
height="14" | ||
viewBox="0 0 8 14" | ||
fill="none" | ||
xmlns="http://www.w3.org/2000/svg" | ||
class="mr-1 mb-1" | ||
> | ||
<path d="M7 1L1 7L7 13" stroke="#4C4763" /> | ||
</svg> | ||
<span>Back</span> | ||
</a> | ||
<div | ||
class="static-page-content min-vh100-fh pa-4 m-auto" | ||
style="max-width: 640px;" | ||
> | ||
<slot /> | ||
</div> | ||
|
||
<main-footer /> | ||
</layout> | ||
</template> | ||
|
||
<script> | ||
import Layout from '@/components/layout/Layout' | ||
import MainFooter from '@/components/layout/MainFooter' | ||
export default { | ||
components: { | ||
Layout, | ||
MainFooter | ||
Layout | ||
}, | ||
methods: { | ||
back() { | ||
window.history.back() | ||
} | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
<template> | ||
<static-page> | ||
<h1>Community Guidelines & Terms of Service</h1> | ||
|
||
<h2>Do:</h2> | ||
<ul> | ||
<li>Each post must contain an idea</li> | ||
<li>Be welcoming and open-minded</li> | ||
<li> | ||
Be respectable to other users. Treat them as you would treat them in | ||
real life | ||
</li> | ||
<li> | ||
Be tolerant towards other’s viewpoints; respectfully disagree when | ||
opinions do not align | ||
</li> | ||
<li>Respect the privacy and personal information of other users</li> | ||
<li>Communicate with courtesy and respect</li> | ||
<li>Be clear and stay on topic</li> | ||
</ul> | ||
|
||
<h2>Don’t:</h2> | ||
<ul> | ||
<li> | ||
Zero tolerance towards hate speech:<br /> | ||
We define hate speech as content that does or intends to attack, | ||
threaten, incite violence against, or dehumanize an individual or a | ||
group of individuals on the basis of protected attributes. We also do | ||
not allow content that verbally or physically threatens violence or | ||
depicts harm to an individual or a group based on any of the following | ||
protected attributes: | ||
</li> | ||
<ul> | ||
<li>Race</li> | ||
<li>National origin</li> | ||
<li>Religion</li> | ||
<li>Caste</li> | ||
<li>Sexual orientation</li> | ||
<li>Sex</li> | ||
<li>Gender</li> | ||
<li>Gender identity</li> | ||
<li>Serious disease or disability</li> | ||
<li>Immigration status</li> | ||
</ul> | ||
<li> | ||
Spam posting - your posts and comments should be wholesome. Posts should | ||
contain all the needed information about each idea | ||
</li> | ||
<li> | ||
Advertising - no advertising of 3rd websites or services without | ||
consulting with DailyIdea staff beforehand | ||
</li> | ||
</ul> | ||
</static-page> | ||
</template> | ||
|
||
<script> | ||
import StaticPage from '@/components/layout/StaticPage' | ||
export default { | ||
components: { | ||
StaticPage | ||
} | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters