Somethin, idk
This commit is contained in:
		
							parent
							
								
									da8221bf81
								
							
						
					
					
						commit
						7cbf18ce74
					
				
					 9 changed files with 79 additions and 10 deletions
				
			
		|  | @ -16,6 +16,7 @@ build_search_index = false | ||||||
| [extra] | [extra] | ||||||
| menu = [ | menu = [ | ||||||
|   {url = "$BASE_URL", name = "Home"}, |   {url = "$BASE_URL", name = "Home"}, | ||||||
|   {url = "$BASE_URL/glog", name = "GLOG Rules"}, |   {url = "$BASE_URL/glog", name = "GLOG Rules", external = true}, | ||||||
|   {url = "https://pics.hazelnut.dev", name = "Photos"}, |   {url = "$BASE_URL/tabletop", name = "Tabletop Shit"}, | ||||||
|  |   {url = "https://pics.hazelnut.dev", name = "Photos", external = true}, | ||||||
| ] | ] | ||||||
|  |  | ||||||
							
								
								
									
										4
									
								
								content/farewell.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								content/farewell.md
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,4 @@ | ||||||
|  | +++ | ||||||
|  | title = "Farewell" | ||||||
|  | draft = true | ||||||
|  | +++ | ||||||
							
								
								
									
										5
									
								
								content/tabletop/_index.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								content/tabletop/_index.md
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | ||||||
|  | +++ | ||||||
|  | title = "Tabletop Experiments and Stuff" | ||||||
|  | +++ | ||||||
|  | 
 | ||||||
|  | HEWWO | ||||||
							
								
								
									
										8
									
								
								content/tabletop/new-system.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								content/tabletop/new-system.md
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,8 @@ | ||||||
|  | +++ | ||||||
|  | title = "New Tabletop RPG System (WIP)" | ||||||
|  | description = "Bored and restless, so time it is to design a tabletop system..." | ||||||
|  | date = 2020-12-21 | ||||||
|  | draft = true | ||||||
|  | +++ | ||||||
|  | 
 | ||||||
|  | GAAAA | ||||||
							
								
								
									
										8
									
								
								content/tabletop/testo.md
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								content/tabletop/testo.md
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,8 @@ | ||||||
|  | +++ | ||||||
|  | title = "New Tabletop RPG System NOT REAL" | ||||||
|  | description = "Bored and restless, so time it is to design a tabletop system..." | ||||||
|  | date = 2020-12-21 | ||||||
|  | draft = true | ||||||
|  | +++ | ||||||
|  | 
 | ||||||
|  | GAAAA | ||||||
							
								
								
									
										2
									
								
								static/robots.txt
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								static/robots.txt
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,2 @@ | ||||||
|  | User-agent: * | ||||||
|  | Disallow: / | ||||||
|  | @ -74,17 +74,27 @@ a:not(.internal)::after { | ||||||
|   content: " " url("/link.svg"); |   content: " " url("/link.svg"); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| a.external::after { | a.show-url::after { | ||||||
|   content: " [" attr(href) "]" url("/link.svg"); |   content: " [" attr(href) "]" url("/link.svg"); | ||||||
|   color: var(--link-fancy); |   color: var(--link-fancy); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
|  | nav ul { | ||||||
|  |   list-style-type: none; | ||||||
|  |   margin: 0; | ||||||
|  |   padding: 0; | ||||||
|  | } | ||||||
|  | 
 | ||||||
|  | nav li { | ||||||
|  |   display: inline; | ||||||
|  | } | ||||||
|  | 
 | ||||||
| nav a { | nav a { | ||||||
|   color: var(--link-fancy); |   color: var(--link-fancy); | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| nav a::after { | nav a.internal { | ||||||
|   content: " " url("/link.svg"); |   margin-right: 1ch; | ||||||
| } | } | ||||||
| 
 | 
 | ||||||
| div.table-wrapper { | div.table-wrapper { | ||||||
|  | @ -137,3 +147,8 @@ div.table-wrapper tr:nth-child(even) { | ||||||
|   float: right; |   float: right; | ||||||
|   cursor: pointer; |   cursor: pointer; | ||||||
| } | } | ||||||
|  | 
 | ||||||
|  | p.post-date { | ||||||
|  |   color: var(--decoration); | ||||||
|  |   margin: 0; | ||||||
|  | } | ||||||
|  |  | ||||||
|  | @ -1,10 +1,14 @@ | ||||||
| <header> | <header> | ||||||
|     <h1 class="site-title">{{ config.title }}</h1> |     <h1 class="site-title">{{ config.title }}</h1> | ||||||
|     <nav> |     <nav> | ||||||
|         {% for item in config.extra.menu %} |         <ul> | ||||||
|         <a href="{{ item.url | safe | replace(from="$BASE_URL", to=config.base_url) }}"> |             {% for item in config.extra.menu %} | ||||||
|             {{ item.name }} |                 <li> | ||||||
|         </a> |                     <a class="{% if not item.external %}internal{% endif %}" href="{{ item.url | safe | replace(from="$BASE_URL", to=config.base_url) }}"> | ||||||
|         {% endfor %} |                         {{ item.name }} | ||||||
|  |                     </a> | ||||||
|  |                 </li> | ||||||
|  |             {% endfor %} | ||||||
|  |         </ul> | ||||||
|     </nav> |     </nav> | ||||||
| </header> | </header> | ||||||
|  |  | ||||||
							
								
								
									
										22
									
								
								templates/section.html
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								templates/section.html
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,22 @@ | ||||||
|  | {% extends "base.html" %} | ||||||
|  | 
 | ||||||
|  | {% block title %}{{ section.title }} - Hazelnut{% endblock title %} | ||||||
|  | 
 | ||||||
|  | {% block content %} | ||||||
|  | {{ section.content | safe }} | ||||||
|  | <hr> | ||||||
|  | <ul class="post-list"> | ||||||
|  |     {% for page in section.pages %} | ||||||
|  |     <li> | ||||||
|  |         <a class="internal" href="{{ page.permalink }}"> | ||||||
|  |             {{ page.title }} | ||||||
|  |             {% if page.date %} | ||||||
|  |                 <p class="post-date"> | ||||||
|  |                     {{ page.date | date(format="%Y-%m-%d") }} | ||||||
|  |                 </p> | ||||||
|  |             {% endif %} | ||||||
|  |         </a> | ||||||
|  |     </li> | ||||||
|  |     {% endfor %} | ||||||
|  | </ul> | ||||||
|  | {% endblock content %} | ||||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue