Skip to content

Commit

Permalink
Premier commit - Ajout du site web
Browse files Browse the repository at this point in the history
  • Loading branch information
martin-cimiterra committed Feb 14, 2025
0 parents commit 985ef16
Show file tree
Hide file tree
Showing 9 changed files with 361 additions and 0 deletions.
27 changes: 27 additions & 0 deletions Site_web.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
from flask import Flask, render_template

app = Flask(__name__)

@app.route('/')
def home():
return render_template('index.html', title="Home")

@app.route('/curriculum_vitæ')
def curriculum_vitæ():
return render_template('curriculum_vitæ.html', title="Curriculum Vitæ")

@app.route('/publications')
def publications():
return render_template('publications.html', title="Publications")

@app.route('/teaching')
def teaching():
return render_template('teaching.html', title="Teaching")

@app.route('/work_in_progress')
def work_in_progress():
return render_template('work_in_progress.html', title="Work in Progress")

if __name__ == '__main__':
app.run(host='0.0.0.0', port=5000)

Binary file added static/images/Martin_Cimiterra.JPG
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
88 changes: 88 additions & 0 deletions static/style.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,88 @@
/* General Styles */
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
margin: 0;
padding: 0;
}

h1, h2 {
color: #333;
}

header {
background-color: #005f73;
color: white;
padding: 10px 0;
}

header .container {
width: 80%;
margin: 0 auto;
text-align: center;
}

nav ul {
list-style: none;
padding: 0;
}

nav ul li {
display: inline;
margin: 0 10px;
}

nav ul li a {
color: white;
text-decoration: none;
font-weight: bold;
}

main {
padding: 20px;
background-color: white;
margin-top: 20px;
}

footer {
background-color: #333;
color: white;
padding: 10px 0;
text-align: center;
}

footer p {
margin: 0;
}

/* Mise en page de la section About Me */
.intro-container {
display: flex; /* Active Flexbox */
align-items: center; /* Centre verticalement */
justify-content: space-between; /* Espace entre texte et image */
gap: 0px; /* Espace entre texte et image */
}

.intro-text {
flex: 0.8; /* Le texte prend tout l'espace disponible */
text-align: justify; /* Justifie le texte */
}

.profile-photo {
width: 400px; /* Ajustez la taille */
height: auto;
border-radius: 50%;
border: 3px solid white;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
margin-right: 125px; /* Décale vers la gauche */
}



/* Adaptation mobile */
@media (max-width: 768px) {
.intro-container {
flex-direction: column; /* Passe en colonne sur petit écran */
align-items: center; /* Centre les éléments */
}
}
40 changes: 40 additions & 0 deletions templates/curriculum_vitæ.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Martin Cimiterra - {{ title }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header>
<div class="container">
<h1>Martin Cimiterra</h1>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('curriculum_vitæ') }}">Curriculum Vitæ</a></li>
<li><a href="{{ url_for('publications') }}" class="active">Publications</a></li>
<li><a href="{{ url_for('teaching') }}">Teaching</a></li>
<li><a href="{{ url_for('work_in_progress') }}">Work In Progress</a></li>
</ul>
</nav>
</div>
</header>

<main>
<section class="curriculum_vitæ">
<h2>Curriculum Vitæ</h2>

<iframe src="{{ url_for('static', filename='pdfs/CV_2025_English_version_Cimiterra.pdf') }}" width="100%" height="600px"></iframe>

<p>If the PDF does not load, <a href="{{ url_for('static', filename='pdfs/publication.pdf') }}" target="_blank">click here to view it</a>.</p>
</section>
</main>


<footer>
<p>&copy; 2025 Martin Cimiterra. All rights reserved.</p>
</footer>
</body>
</html>
45 changes: 45 additions & 0 deletions templates/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header>
<div class="container">
<h1>Martin Cimiterra</h1>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('curriculum_vitæ') }}">Curriculum Vitæ</a></li>
<li><a href="{{ url_for('publications') }}">Publications</a></li>
<li><a href="{{ url_for('teaching') }}">Teaching</a></li>
<li><a href="{{ url_for('work_in_progress') }}">Work In Progress</a></li>
</ul>
</nav>
</div>
</header>

<main>
<section class="intro-container">
<div class="intro-text">
<h2>About Me</h2>
<p>Welcome to my academic site. This is a place where I share my research, publications, and teaching activities.</p>
<p>I am <a href="https://webapps.unitn.it/du/it/Persona/PER0286291/Curriculum">Postdoc Research Fellow</a> in Economics at the <a href="https://www.unitn.it/it"> University of Trento</a>.</p>
<p>I am currently involved in the <a href="https://www.geotwin.it/">GeoTwin</a>&nbsp;research project, led by Principal Investigator Prof. Sandro Montresor. This project aims to identify, characterise, and map digital technologies at the regional level that can enhance local environmental sustainability while supporting the broader twin transition. This research explores the technical, economic, socio-institutional, and regional policy factors influencing the development and adoption of these technologies for sustainable environmental impact.</p>
<p>I am interested in Industrial Dynamics, Industrial Organisation, Economics of Innovation, Digital Economy, Twin Transition and Sustainable Development Goals.</p>
<p>I work in Python, SQL, R and Stata.</p>
</div>

<img src="{{ url_for('static', filename='images/Martin_Cimiterra.jpg') }}" alt="Martin Cimiterra" class="profile-photo">
</section>

</main>

<footer>
<p>&copy; 2025 Martin Cimiterra. All rights reserved.</p>
</footer>
</body>
</html>
57 changes: 57 additions & 0 deletions templates/publications.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Martin Cimiterra - {{ title }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header>
<div class="container">
<h1>Martin Cimiterra</h1>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('curriculum_vitæ') }}">Curriculum Vitæ</a></li>
<li><a href="{{ url_for('publications') }}" class="active">Publications</a></li>
<li><a href="{{ url_for('teaching') }}">Teaching</a></li>
<li><a href="{{ url_for('work_in_progress') }}">Work In Progress</a></li>
</ul>
</nav>
</div>
</header>

<main>
<section class="publications">
<h2>Articles published in peer-reviewed journals</h2>

<ul class="publication-list">
<li>
<h3><a href="https://doi.org/10.1093/icc/dtab009" target="_blank">Cimiterra, M., Krafft, J., and Nesta, L. (2021). Blockchain as Schumpeter Mark 1 or Mark 2? An empirical analysis of blockchain job offers in France and Germany.</a></h3>
<p><em>Industrial and Corporate Change</em>, 30(6), 1388-1402.</p>
</li>
</ul>
<section class="publications">
<h2>Books chapters</h2>

<ul class="publication-list">
<li>
<h3><a href="https://link.springer.com/chapter/10.1007/978-3-031-38260-4_9" target="_blank">Cimiterra, M., and Krafft, J., 2023. Blockchain: Antecedents and Future Challenges.</a></h3>
<p><em>In Bergé, J.-S. (Ed.), The A Priori Method in the Social Sciences: A Multidisciplinary Approach</em>, (pp. 131-141). Springer International Publishing.</p>
</li>
</ul>
<ul class="publication-list">
<li>
<h3><a href="https://www.e-elgar.com/shop/gbp/elgar-encyclopedia-on-the-economics-of-knowledge-and-innovation-9781839106989.html?srsltid=AfmBOoqAYaT9tsmayWAuycbDaZHIYf7WxoqUMofBCLf8mKDQ4V18RKZm" target="_blank">Cimiterra, M., and Krafft, J., 2022. Blockchain as a New Digital Paradigm.</a></h3>
<p><em>In Elgar Encyclopedia on the Economics of Knowledge and Innovation</em>, (pp. 22-30). Edward Elgar Publishing.</p>
</li>
</ul>
</section>
</main>

<footer>
<p>&copy; 2025 Martin Cimiterra. All rights reserved.</p>
</footer>
</body>
</html>
53 changes: 53 additions & 0 deletions templates/teaching.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,53 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Martin Cimiterra - {{ title }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
<style>
.institution {
margin-top: 20px;
}
</style>
</head>
<body>
<header>
<div class="container">
<h1>Martin Cimiterra</h1>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('curriculum_vitæ') }}">Curriculum Vitæ</a></li>
<li><a href="{{ url_for('publications') }}">Publications</a></li>
<li><a href="{{ url_for('teaching') }}" class="active">Teaching</a></li>
<li><a href="{{ url_for('work_in_progress') }}">Work In Progress</a></li>
</ul>
</nav>
</div>
</header>

<main>
<section class="teaching">
<h2>Teaching Activities</h2>

<div class="institution"><b>Lecturer of Econometrics at Skema Business School, Sophia Antipolis Campus</b></div>
<div class="course">Main course and tutorials <span class="year">2023, 2024</span></div>

<div class="institution"><b>Lecturer at Sciences Po Paris, Menton Campus</b></div>
<div class="course">Courses based on CORE Econ <span class="year">2024</span></div>

<div class="institution"><b>Lecturer at University of Côte d'Azur EUR-ELMI</b></div>
<div class="course">Macroeconomics <span class="year">2024</span></div>
<div class="course">Econometrics <span class="year">2023</span></div>
<div class="course">Introduction to R (in English) <span class="year">2022, 2023</span></div>
<div class="course">Microeconomics <span class="year">2021, 2022, 2023</span></div>
</section>
</main>

<footer>
<p>&copy; 2025 Martin Cimiterra. All rights reserved.</p>
</footer>
</body>
</html>

51 changes: 51 additions & 0 deletions templates/work_in_progress.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Martin Cimiterra - {{ title }}</title>
<link rel="stylesheet" href="{{ url_for('static', filename='style.css') }}">
</head>
<body>
<header>
<div class="container">
<h1>Martin Cimiterra</h1>
<nav>
<ul>
<li><a href="{{ url_for('home') }}">Home</a></li>
<li><a href="{{ url_for('curriculum_vitæ') }}">Curriculum Vitæ</a></li>
<li><a href="{{ url_for('publications') }}" class="active">Publications</a></li>
<li><a href="{{ url_for('teaching') }}">Teaching</a></li>
<li><a href="{{ url_for('work_in_progress') }}">Work In Progress</a></li>
</ul>
</nav>
</div>
</header>

<main>
<section class="work_in_progress">
<h2>Work in progress</h2>

<ul class="publication-list">
<li>
<p>Cimiterra, M., Montresor, S. Strategies, practices and enabling/hindering factors of the Twin Transition of Italian firms.</p>
</li>
</ul>
<ul class="publication-list">
<li>
<p>Cimiterra, M., Gabriele, R., Lelli, F., Montresor, S., Stocchi, C., and Tokarchuk, O. Bridging Circular Economy Innovation/Practices and Digitalization: Insights from a Literature Review.</p>
</li>
</ul>
<ul class="publication-list">
<li>
<p>Cimiterra, M., Martinelli, A. Decentralized Applications on Blockchain: Exploring Transaction Performance and the Role of Individual Capabilities, mimeo.</p>
</li>
</ul>
<section class="publications">
</main>

<footer>
<p>&copy; 2025 Martin Cimiterra. All rights reserved.</p>
</footer>
</body>
</html>

0 comments on commit 985ef16

Please sign in to comment.