├── README.md ├── database.csv ├── requirements.txt ├── server.py ├── static ├── assets │ ├── apple-icon-180x180.png │ ├── favicon.ico │ └── images │ │ ├── profil.jpg │ │ ├── space.jpg │ │ ├── work001-01.jpg │ │ ├── work001-02.jpg │ │ ├── work001-03.jpg │ │ ├── work001-04.jpg │ │ ├── work01-hover.jpg │ │ ├── work02-hover.jpg │ │ └── work03-hover.jpg ├── main.3f6952e4.css ├── main.70a66962.js ├── script.js └── style.css └── templates ├── about.html ├── components.html ├── contact.html ├── index.html ├── thankyou.html ├── work.html └── works.html /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/README.md -------------------------------------------------------------------------------- /database.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/database.csv -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/requirements.txt -------------------------------------------------------------------------------- /server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/server.py -------------------------------------------------------------------------------- /static/assets/apple-icon-180x180.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/apple-icon-180x180.png -------------------------------------------------------------------------------- /static/assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/favicon.ico -------------------------------------------------------------------------------- /static/assets/images/profil.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/profil.jpg -------------------------------------------------------------------------------- /static/assets/images/space.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/space.jpg -------------------------------------------------------------------------------- /static/assets/images/work001-01.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/work001-01.jpg -------------------------------------------------------------------------------- /static/assets/images/work001-02.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/work001-02.jpg -------------------------------------------------------------------------------- /static/assets/images/work001-03.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/work001-03.jpg -------------------------------------------------------------------------------- /static/assets/images/work001-04.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/work001-04.jpg -------------------------------------------------------------------------------- /static/assets/images/work01-hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/work01-hover.jpg -------------------------------------------------------------------------------- /static/assets/images/work02-hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/work02-hover.jpg -------------------------------------------------------------------------------- /static/assets/images/work03-hover.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/assets/images/work03-hover.jpg -------------------------------------------------------------------------------- /static/main.3f6952e4.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/main.3f6952e4.css -------------------------------------------------------------------------------- /static/main.70a66962.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/main.70a66962.js -------------------------------------------------------------------------------- /static/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/static/script.js -------------------------------------------------------------------------------- /static/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: green 3 | } -------------------------------------------------------------------------------- /templates/about.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/templates/about.html -------------------------------------------------------------------------------- /templates/components.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/templates/components.html -------------------------------------------------------------------------------- /templates/contact.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/templates/contact.html -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/thankyou.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/templates/thankyou.html -------------------------------------------------------------------------------- /templates/work.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/templates/work.html -------------------------------------------------------------------------------- /templates/works.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aneagoie/portfo-updated/HEAD/templates/works.html --------------------------------------------------------------------------------