summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJozanLeClerc <bousset.rudy@gmail.com>2020-07-07 18:37:49 +0200
committerJozanLeClerc <bousset.rudy@gmail.com>2020-07-07 18:37:49 +0200
commitc26a3ab5db1cfda8210fd4c090acda8c46cdab71 (patch)
treeb5fbd139ba131c210046a73761bcfa8b86359996
parentShould work now (diff)
downloadgitjoe-www-c26a3ab5db1cfda8210fd4c090acda8c46cdab71.tar.gz
gitjoe-www-c26a3ab5db1cfda8210fd4c090acda8c46cdab71.tar.bz2
gitjoe-www-c26a3ab5db1cfda8210fd4c090acda8c46cdab71.tar.xz
gitjoe-www-c26a3ab5db1cfda8210fd4c090acda8c46cdab71.tar.zst
gitjoe-www-c26a3ab5db1cfda8210fd4c090acda8c46cdab71.zip
added .gitignore
-rw-r--r--.gitignore90
-rw-r--r--inc/classic-contents.inc.php10
2 files changed, 93 insertions, 7 deletions
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 0000000..2155c14
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,90 @@
+
+# Created by https://www.toptal.com/developers/gitignore/api/emacs,linux,vim
+# Edit at https://www.toptal.com/developers/gitignore?templates=emacs,linux,vim
+
+### Emacs ###
+# -*- mode: gitignore; -*-
+*~
+\#*\#
+/.emacs.desktop
+/.emacs.desktop.lock
+*.elc
+auto-save-list
+tramp
+.\#*
+
+# Org-mode
+.org-id-locations
+*_archive
+
+# flymake-mode
+*_flymake.*
+
+# eshell files
+/eshell/history
+/eshell/lastdir
+
+# elpa packages
+/elpa/
+
+# reftex files
+*.rel
+
+# AUCTeX auto folder
+/auto/
+
+# cask packages
+.cask/
+dist/
+
+# Flycheck
+flycheck_*.el
+
+# server auth directory
+/server/
+
+# projectiles files
+.projectile
+
+# directory configuration
+.dir-locals.el
+
+# network security
+/network-security.data
+
+
+### Linux ###
+
+# temporary files which can be created if a process still has a handle open of a deleted file
+.fuse_hidden*
+
+# KDE directory preferences
+.directory
+
+# Linux trash folder which might appear on any partition or disk
+.Trash-*
+
+# .nfs files are created when an open file is removed but is still being accessed
+.nfs*
+
+### Vim ###
+# Swap
+[._]*.s[a-v][a-z]
+!*.svg # comment out if you don't need vector files
+[._]*.sw[a-p]
+[._]s[a-rt-v][a-z]
+[._]ss[a-gi-z]
+[._]sw[a-p]
+
+# Session
+Session.vim
+Sessionx.vim
+
+# Temporary
+.netrwhist
+# Auto-generated tag files
+tags
+# Persistent undo
+[._]*.un~
+
+# End of https://www.toptal.com/developers/gitignore/api/emacs,linux,vim
diff --git a/inc/classic-contents.inc.php b/inc/classic-contents.inc.php
index 5986ac9..2b50609 100644
--- a/inc/classic-contents.inc.php
+++ b/inc/classic-contents.inc.php
@@ -11,8 +11,6 @@
<!-- ----------------------------------------------------------------------- -->
<?php
-include "org.inc.php";
-
function
jo_head($title) {
global $prefix;
@@ -22,7 +20,6 @@ jo_head($title) {
<title>GitJoe's - Joe's git - <?php echo "$title"; ?></title>
<link rel="stylesheet" type="text/css" href="<?php echo $prefix; ?>css/site.css">
<meta charset="UTF-8">
- <?php jo_org_inc(); ?>
</head>
<body>
<div class="fullpage">
@@ -38,11 +35,10 @@ jo_bloat_head($title) {
?>
<html>
<head>
- <title>Joe's own website - <?php echo "$title"; ?></title>
+ <title> GitJoe's - Joe's git - <?php echo "$title"; ?></title>
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" type="text/css" href="<?php echo $prefix; ?>css/site.css">
<meta charset="UTF-8">
- <?php jo_org_inc(); ?>
</head>
<body>
<div class="fullpage">
@@ -59,8 +55,8 @@ jo_sidebar() {
<div class="sidebar">
<ul>
- <li><a href="<?php echo $prefix; ?>index.php">Jozan</a></li>
- <li><a href="<?php echo $prefix; ?>index.php">salad</a></li>
+ <li><a href="<?php echo $prefix; ?>jozan/">jozan</a></li>
+ <li><a href="<?php echo $prefix; ?>salad/">salad</a></li>
<hr>
<li><a href="https://jozanleclerc.xyz/" target="_blank">JozanLeClerc.xyz</a></li>
</ul>