Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
xiweideng committed Aug 15, 2023
1 parent f57d403 commit 1034f4c
Show file tree
Hide file tree
Showing 26 changed files with 1,233 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
_site
.sass-cache
Gemfile.lock
*.gem
.DS_Store
.jekyll-cache
git-update.sh
.idea
6 changes: 6 additions & 0 deletions .rubocop.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
AllCops:
Exclude:
- _site/**/*

Metrics/LineLength:
Enabled: false
17 changes: 17 additions & 0 deletions Experiences.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
layout: normal
title: Experiences
---

## Working Experiences

+ To be continued

## Internship Experiences

+ Administrative Assistant, College of Medical Informatics, Chongqing Medical University, Dec. 2022 - May. 2023

## Teaching Assistant Experiences

+ To be continued

5 changes: 5 additions & 0 deletions Gemfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# frozen_string_literal: true

source 'https://mirrors.tuna.tsinghua.edu.cn/rubygems'

gemspec
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
# Hey,I'm Xiwei Deng
40 changes: 40 additions & 0 deletions _config.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# Basic Information
title: Xiwei Deng
position: M.S.
first_department: Institute of Artificial Intelligence
first_department_link: https://iai.xmu.edu.cn/
second_department: Fujian Provincial Key Laboratory of Plasma and Magnetic Resonance
second_department_link: https://pmr.xmu.edu.cn/index.htm
affiliation: Xiamen University (XMU)
affiliation_link: https://www.xmu.edu.cn/
address: Xiamen, Fujian, China
email: [email protected]
modification_date: Aug 2023
# Search Engine Optimization (SEO)
# The following information is used to improve the website traffic from search engines, e.g., Google.
keywords: Your name
description: The description
canonical: https://jekyll-jemdoc.yliu.me/

# Links
# If you don't need one of them, you may delete the corresponding line.
google_scholar: https://scholar.google.com/
github: https://github.com/xiweideng
research_gate: https://www.researchgate.net/profile/Xiwei-Deng-2
orcid: javascript:;
linkedin: javascript:;
twitter: javascript:;
facebook: javascript:;
# Images (e.g., your profile picture and your website's favicon)
# "favicon" and "favicon_dark" are used for the light and dark modes, respectively.
avatar: ./assets/img/avatar.jpg
favicon: ./assets/img/favicon-caltech.png
favicon_dark: ./assets/img/favicon-caltech.png

# The following files will be removed from the generated website.
exclude:
- Gemfile
- Gemfile.lock
- README.md
- LICENSE
- jekyll-jemdoc.gemspec
7 changes: 7 additions & 0 deletions _includes/navbar.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<td id="layout-menu">
<div class="menu-category">{{ site.title }}</div>
<div class="menu-item"><a href="index.html" class="current">Home</a></div>
<div class="menu-category">Reserach</div>
<div class="menu-item"><a href="publications.html">Publications</a></div>
<div class="menu-item"><a href="Experiences.html">Experiences</a></div>
</td>
117 changes: 117 additions & 0 deletions _layouts/homepage.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,117 @@
<!DOCTYPE html>
<html lang="en">
</head>
<meta name="description" content="{{ site.description }}">
{% if site.keywords %}
<meta name="keywords" content="{{ site.keywords }}">
{% endif %}
{% if site.canonical %}
<link rel="canonical" href="{{ site.canonical }}"/>
{% endif %}
<link rel="icon" media="(prefers-color-scheme:dark)" href="{{ site.favicon_dark }}" type="image/png"/>
<link rel="icon" media="(prefers-color-scheme:light)" href="{{ site.favicon }}" type="image/png"/>
<meta charset="utf-8">
</head>
<link rel="stylesheet" href="./assets/css/style.css" type="text/css"/>
<link rel="stylesheet" href="./assets/css/jemdocCustom.css" type="text/css"/>
<title>{{ site.title }}</title>
</head>
<body>
<table summary="Table for page layout." id="tlayout">
<tr valign="top">
{% include navbar.html %}
<td id="layout-content">
<h1>{{ site.title }}</h1>
{% if site.avatar %}
<table class="imgtable">
<tr>
<td>
<a href="index.html"><img src="{{site.avatar}}" alt="alt text" height="180px"/></a>&nbsp;
</td>
{% endif %}
<td align="left">
<!--
<p><a href="">{{ site.title }}</a></p>
-->
<p>{% if site.position %}
{{ site.title }}, {{ site.position }}<br/>
{% endif %}
{% if site.first_department %}
<a href="{{site.first_department_link}}" target="_blank">{{site.first_department}}</a><br/>
{% endif %}
{% if site.second_department %}
<a href="{{site.second_department_link}}"
target="_blank">{{site.second_department}}</a><br/>
{% endif %}
{% if site.affiliation %}
<a href="{{site.affiliation_link}}" target="_blank">{{site.affiliation}}</a>
{% endif %}
</p>
<p>
{% if site.address %}
{{site.address}}<br/>
{% endif %}
{% if site.address %}
Email: {{site.email}} <br/>
{% endif %}
{% if site.phone %}
Phone: {{site.phone}} <br/>
{% endif %}</p>
<p>
{% if site.google_scholar %}
<a href="{{site.google_scholar}}" target="_blank" title="Google Scholar">
<img src="../assets/img/google_scholar.png" alt="Google Scholar">
</a>
{% endif %}
{% if site.github %}
<a href="{{ site.github }}" target="_blank" title="Github"><img
src="../assets/img/github.svg" alt="Github"></a>
{% endif %}
{% if site.research_gate %}
<a href="{{ site.research_gate }}" target="_blank" title="researchgate"><img
src="../assets/img/rg.png" alt="researchgate"></a>
{% endif %}
{% if site.orcid %}
<a href="{{ site.orcid }}" target="_blank" title="ORCID"><img
src="../assets/img/orcid.jpeg" alt="ORCID"></a>
{% endif %}
{% if site.linkedin %}
<a href="{{ site.linkedin }}" target="_blank" title="Linkedin"><img
src="../assets/img/LinkedIn_s.png" alt="Linkedin"></a>
{% endif %}
{% if site.twitter %}
<a href="{{ site.twitter }}" target="_blank" title="twitter"><img
src="../assets/img/twitter.png" alt="twitter"></a>
{% endif %}
{% if site.facebook %}
<a href="{{ site.facebook }}" target="_blank" title="Facebook"><img
src="../assets/img/th.png" alt="Facebook"></a>
{% endif %}
</p>
</td>
</tr>
</table>
{{ content }}

<!--
<div class="infoblock">
<div class="blockcontent">
<p><a href="news.html">More news</a></p>
</div></div>
-->
<div id="visitors" style="margin: 0 auto;">
<script type="text/javascript"
id="clustrmaps"
src="//cdn.clustrmaps.com/map_v2.js?d=0BV5WWkvubBh6O72_ES-0aHY-MlDJXUC2LUHQid3A4A&cl=ffffff&w=a">
</script>
</div>
<div id="footer">
<div style="text-align: center;">Copyright &copy; Xiwei Deng | Last modified :
{{site.modification_date}}
</div>
</div>
</td>
</tr>
</table>
</body>
</html>
36 changes: 36 additions & 0 deletions _layouts/normal.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<!DOCTYPE html>
<html lang="en">
</head>
<link rel="icon" media="(prefers-color-scheme:dark)" href="{{ site.favicon_dark }}" type="image/png"/>
<link rel="icon" media="(prefers-color-scheme:light)" href="{{ site.favicon }}" type="image/png"/>
<meta charset="utf-8">
</head>
<link rel="stylesheet" href="./assets/css/style.css" type="text/css" />
<link rel="stylesheet" href="./assets/css/jemdocCustom.css" type="text/css" />
<title>{{ site.title }} - {{ page.title }}</title>
</head>
<body>
<table summary="Table for page layout." id="tlayout">
<tr valign="top">
{% include navbar.html %}
<td id="layout-content">
<h1>{{ page.title }}</h1>

{{ content }}

<!--
<div class="infoblock">
<div class="blockcontent">
<p><a href="news.html">More news</a></p>
</div></div>
-->
<div id="footer">
<div style="text-align: center;">Copyright &copy; Xiwei Deng | Last modified :
{{site.modification_date}}
</div>
</div>
</td>
</tr>
</table>
</body>
</html>
Loading

0 comments on commit 1034f4c

Please sign in to comment.