add skeleton files

This commit is contained in:
James Dixon 2020-11-27 17:49:12 -05:00
parent 516d7d86c5
commit da5ffe4a98
4 changed files with 41 additions and 0 deletions

7
files/vim/.vim/skel/bash Normal file
View File

@ -0,0 +1,7 @@
#!/bin/bash
main() {
echo "Hello World"
}
main

17
files/vim/.vim/skel/html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="x-ua-compatible" content="ie=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>Hello World</title>
<link rel="stylesheet" href="css/main.css" />
<link rel="icon" href="images/favicon.png" />
</head>
<body>
<h1>Hello World</h1>
<script src="js/main.js"></script>
</body>
</html>

View File

@ -0,0 +1,8 @@
#!/usr/bin/env python
def main():
print("Hello World")
main()

View File

@ -0,0 +1,9 @@
from flask import Flask
app = Flask(__name__)
@app.route('/')
@app.route('/index')
def index():
return "Hello, World!"