Added notes page
This commit is contained in:
parent
6d2d2e2874
commit
c01909e3db
@ -35,6 +35,10 @@ kramdown:
|
|||||||
# docs:
|
# docs:
|
||||||
# output: true
|
# output: true
|
||||||
|
|
||||||
|
collections:
|
||||||
|
notes:
|
||||||
|
output: true
|
||||||
|
|
||||||
|
|
||||||
highlighter: rouge
|
highlighter: rouge
|
||||||
|
|
||||||
|
23
_layouts/note.html
Normal file
23
_layouts/note.html
Normal file
@ -0,0 +1,23 @@
|
|||||||
|
{% include head.html %}
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="site-ctr">
|
||||||
|
<!-- Navbar -->
|
||||||
|
{% include nav.html %}
|
||||||
|
|
||||||
|
<div class="reactive-bg">
|
||||||
|
<div class="post container">
|
||||||
|
<h1>{{page.title}}</h1>
|
||||||
|
<hr><br>
|
||||||
|
|
||||||
|
{{content}}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% include footer.html %}
|
||||||
|
|
||||||
|
|
||||||
|
</body>
|
32
_layouts/noteindex.html
Normal file
32
_layouts/noteindex.html
Normal file
@ -0,0 +1,32 @@
|
|||||||
|
{% include head.html %}
|
||||||
|
|
||||||
|
<body>
|
||||||
|
|
||||||
|
<div class="site-ctr">
|
||||||
|
<!-- Navbar -->
|
||||||
|
{% include nav.html %}
|
||||||
|
|
||||||
|
<div class="reactive-bg">
|
||||||
|
<div class="post container">
|
||||||
|
<h1>{{page.title}}</h1>
|
||||||
|
<hr><br>
|
||||||
|
|
||||||
|
{{content}}
|
||||||
|
|
||||||
|
<ul>
|
||||||
|
{%for note in site.notes %}
|
||||||
|
{%if note.index != true %}
|
||||||
|
<li>
|
||||||
|
<a href="{{note.url}}">{{note.title}}</a>
|
||||||
|
</li>
|
||||||
|
{%endif%}
|
||||||
|
{%endfor%}
|
||||||
|
</ul>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
</div>
|
||||||
|
{% include footer.html %}
|
||||||
|
|
||||||
|
</body>
|
10
_notes/godmode.md
Normal file
10
_notes/godmode.md
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
---
|
||||||
|
layout: note
|
||||||
|
title: "Windows GodMode"
|
||||||
|
---
|
||||||
|
|
||||||
|
I don't remember why this works, or if it is intended to be removed, but creating a folder, then naming it the following will turn it into a quick link that gives access to all system administration tools.
|
||||||
|
|
||||||
|
```
|
||||||
|
GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}
|
||||||
|
```
|
8
_notes/index.md
Normal file
8
_notes/index.md
Normal file
@ -0,0 +1,8 @@
|
|||||||
|
---
|
||||||
|
layout: noteindex
|
||||||
|
index: true
|
||||||
|
title: "My notes"
|
||||||
|
---
|
||||||
|
|
||||||
|
Here is a collection of notes I have taken and docs I have written about various projects and topics, along with some notes from school.
|
||||||
|
|
@ -1,2 +0,0 @@
|
|||||||
|
|
||||||
# Welcome to my notes!
|
|
@ -1 +1 @@
|
|||||||
`GodMode.{ED7BA470-8E54-465E-825C-99712043E01C}`
|
``
|
Loading…
x
Reference in New Issue
Block a user