Initial commit

This commit is contained in:
2015-05-30 20:08:55 +02:00
commit f5b3449bf6
3 changed files with 111 additions and 0 deletions
+51
View File
@@ -0,0 +1,51 @@
let SessionLoad = 1
if &cp | set nocp | endif
let s:so_save = &so | let s:siso_save = &siso | set so=0 siso=0
let v:this_session=expand("<sfile>:p")
silent only
cd ~/Web_projects/Sam_Perry
if expand('%') == '' && !&modified && line('$') <= 1 && getline(1) == ''
let s:wipebuf = bufnr('%')
endif
set shortmess=aoO
badd +1 index.htm
argglobal
silent! argdel *
argadd index.htm
edit index.htm
set splitbelow splitright
set nosplitbelow
set nosplitright
wincmd t
set winheight=1 winwidth=1
argglobal
setlocal fdm=manual
setlocal fde=0
setlocal fmr={{{,}}}
setlocal fdi=#
setlocal fdl=0
setlocal fml=1
setlocal fdn=20
setlocal fen
silent! normal! zE
let s:l = 60 - ((49 * winheight(0) + 25) / 50)
if s:l < 1 | let s:l = 1 | endif
exe s:l
normal! zt
60
normal! 07|
tabnext 1
if exists('s:wipebuf')
silent exe 'bwipe ' . s:wipebuf
endif
unlet! s:wipebuf
set winheight=1 winwidth=20 shortmess=filnxtToOc
let s:sx = expand("<sfile>:p:r")."x.vim"
if file_readable(s:sx)
exe "source " . fnameescape(s:sx)
endif
let &so = s:so_save | let &siso = s:siso_save
doautoall SessionLoadPost
let g:this_obsession = v:this_session
unlet SessionLoad
" vim: set ft=vim :
+60
View File
@@ -0,0 +1,60 @@
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Sam Perry - Main Page</title>
</head>
<body>
<header>
<h1>Sam Perry</h1>
</header>
<nav>
<ul>
<li>About Me</li>
<li>Portfolio</li>
<li>Professional Experience</li>
</ul>
</nav>
<section id="aboutMe">
<h2>About Me</h2>
<p>Insert summary here</p>
<div id="interests">
<h3>Interests</h3>
<div id="coding">
<h4>Coding</h4>
</div>
<div id="music">
<h4>Music</h4>
</div>
<div id="motorbikes">
<h4>Motorbikes</h4>
</div>
</div>
</section>
<section id="profExper">
<h2>Professional Experience</h2>
<p>Summary of professional experience </p>
<div id="ircam">
<h4>IRCAM</h4>
<p>Summary of experience at IRCAM</p>
</div>
</section>
<section id="portfolio">
<h2>Portfolio</h2>
<p>Summary of portfolio</p>
<h4>Audio descriptor framework</h4>
<h4>Python/matlab filter module</h4>
<h4>VSTi Synth</h4>
<h4>VST Delay effect</h4>
<h4>This Website</h4>
</section>
<footer>
<p><small>Copyright &copy; Sam Perry</small></p>
</footer>
</body>
</html>
Binary file not shown.

After

Width:  |  Height:  |  Size: 878 KiB