forked from atinux/discuss
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,12 @@ | ||
<template> | ||
<div class="container mx-auto md:my-20 p-4 sm:p-10 md:px-20 shadow bg-light-50 flex flex-col gap-5"> | ||
<slot/> | ||
</div> | ||
<main class="md:my-20"> | ||
<div class="container mx-auto p-4 sm:p-10 md:px-20 shadow bg-light-50 flex flex-col gap-5"> | ||
<slot/> | ||
</div> | ||
<p class="mt-5 text-center text-sm text-gray-800"> | ||
<a href="https://github.com/atinux/discuss" class="underline hover:text-black">Source code</a> | ||
| | ||
<a href="https://atinux.com" class="underline hover:text-black">Main website</a> | ||
</p> | ||
</main> | ||
</template> |