Skip to content

Commit

Permalink
Doc fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
AydinHassan committed Mar 10, 2024
1 parent 32972de commit ecb783c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions assets/components/Website/Docs/DocTitle.vue
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ const slug = computed(() => {
<template>
<h2 :id="id" class="relative mb-4 flex items-center border-b border-gray-600 pb-1 pt-2 font-mono text-2xl">
<span class="text-[#e91e63]">{{ title }}</span>
<a class="ml-2 inline-block !text-gray-300 hover:!text-gray-200 hover:underline" :href="'#' + slug">#</a>
<a class="ml-2 inline-block !text-gray-300 hover:text-gray-200 hover:underline" :href="'#' + slug">#</a>
<a
v-if="file"
title="Edit this page on GitHub!"
target="_blank"
class="ml-2 inline-block fill-current !text-gray-300 hover:!text-gray-200"
class="ml-2 inline-block fill-current !text-gray-300 hover:!text-[#e91e63]"
:href="'https://www.github.com/php-school/phpschool.io/tree/master/assets/components/Website/Docs/Sections/' + file"
>
<PencilSquareIcon class="h-6 w-6"></PencilSquareIcon>
<PencilSquareIcon class="h-5 w-5"></PencilSquareIcon>
</a>
<a href="#app" class="absolute right-0 text-xs hover:underline">^ TOP</a>
</h2>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ import ContentHeader from "../../ContentHeader.vue";

<ContentHeader id="tutorial-sections">Tutorial Sections</ContentHeader>

<h3>
<h3 class="mb-2">
<router-link to="/docs/tutorial/creating-your-own-workshop">1. Creating your own workshop</router-link>
</h3>
<p>Learn how to create and setup your very own workshop.</p>
<h3>
<h3 class="mb-2">
<router-link to="/docs/tutorial/modify-theme">2. Modifying the theme of your workshop</router-link>
</h3>
<p>Customise the look and feel of your workshop, personalise to your brand or subject.</p>
<h3>
<h3 class="mb-2">
<router-link to="/docs/tutorial/creating-an-exercise">3. Creating an exercise</router-link>
</h3>
<p>Create the first exercise for your workshop.</p>
Expand Down

0 comments on commit ecb783c

Please sign in to comment.