30 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			30 lines
		
	
	
		
			1.2 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
| {% extends "base.html" %}
 | |
| 
 | |
| {% block content %}
 | |
| <div class="flex flex-col pt-8 mx-auto">
 | |
|     <p class="prose text-white">
 | |
|       I keep my code mostly on my private Gitea instance <a class="text-indigo-400"
 | |
|         href="https://{{ config.extra.gitea_url }}/{{ config.extra.gitea_username }}">here</a>.
 | |
|       For purposes of allowing other people to also contribute
 | |
|       I try to mirror my code on GitHub and codeberg.
 | |
|     </p>
 | |
|   
 | |
|     <div class="pt-8 w-full">
 | |
|       <table class="text-white pt-8 w-full">
 | |
|         <tr>
 | |
|           <td>GitHub</td>
 | |
|           <td><a class="text-indigo-400" href="https://github.com/{{ config.extra.github_username }}">{{ config.extra.github_username }}</a></td>
 | |
|         </tr>
 | |
|         <tr>
 | |
|           <td>Codeberg</td>
 | |
|           <td><a class="text-indigo-400" href="https://codeberg.org/{{ config.extra.codeberg_username }}">{{ config.extra.codeberg_username }}</a>
 | |
|           </td>
 | |
|         </tr>
 | |
|         <tr>
 | |
|           <td>Gitea</td>
 | |
|           <td><a class="text-indigo-400" href="https://{{ config.extra.gitea_url }}/{{ config.extra.gitea_username }}">{{ config.extra.gitea_username }}</a></td>
 | |
|         </tr>
 | |
|       </table>
 | |
|     </div>
 | |
|   </div>
 | |
| {% endblock %} |