-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit d154125
Showing
19 changed files
with
11,397 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
*.DS_Store | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
MIT License | ||
|
||
Copyright (c) 2023-2024 Legasse Remon | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in all | ||
copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
|
||
|
||
![Github Forks](https://img.shields.io/github/forks/senli1073/senli1073.github.io?style=flat) | ||
![Github Stars](https://img.shields.io/github/stars/senli1073/senli1073.github.io?style=flat) | ||
![License](https://img.shields.io/github/license/senli1073/senli1073.github.io) | ||
![Last Commit](https://img.shields.io/github/last-commit/senli1073/senli1073.github.io) | ||
|
||
# A simple Github Pages template for academic personal website. | ||
|
||
## Preview | ||
[![Screenshot of the Website](https://raw.githubusercontent.com/senli1073/senli1073.github.io/main/screenshot_full.png)](https://senli1073.github.io/) | ||
|
||
|
||
## Introduction | ||
|
||
This is an academic personal website template based on [bootstrap](https://github.com/StartBootstrap/startbootstrap-new-age). | ||
|
||
The template is designed to integrate Markdown files as content input. There's no need to compile the webpage before deployment. Upon loading, the Markdown files are automatically parsed and embedded into the page. | ||
|
||
This template supports LaTeX formula input. You can use `$...$` and `\(...\)` as delimiters for inline-math, or use `$$...$$` and `\[...\]` as delimiters for display-math. Macros such as `\ref{...}`, `\eqref{...}`, and `\begin{equation}...\end{equation}` are also supported. See [MathJax](https://docs.mathjax.org/en/latest/index.html) for more details. | ||
|
||
:milky_way: Demo: https://senli1073.github.io/ | ||
|
||
|
||
## Getting Start | ||
### 1. Fork this repository | ||
The repository name should be `<username>.github.io`, which will also be your website's URL. | ||
|
||
|
||
### 2. Edit page content | ||
|
||
(1) Go to the folder where you want to store your project, and clone the new repository: | ||
``` | ||
git clone https://github.com/<username>/<username>.github.io.git | ||
``` | ||
The directory structure is as follows: | ||
|
||
```. | ||
. | ||
├── contents | ||
└── static | ||
├── assets | ||
│ └── img | ||
├── css | ||
└── js | ||
``` | ||
|
||
(2) Modify the content of each section, which corresponds to `contents/*.md`. | ||
|
||
(3) Adjust the title, copyright information, and other text of the website in `contents/config.yml` | ||
|
||
(4) Replace background image and photo with new ones for your web pages in `static/assets/img/` | ||
|
||
(5) Push it: | ||
``` | ||
git commit -am 'init' | ||
git push | ||
``` | ||
|
||
|
||
### 3. Enjoy | ||
|
||
Fire up a browser and go to `https://<username>.github.io` | ||
|
||
|
||
|
||
## License | ||
|
||
Copyright Sen Li, 2023. Licensed under an MIT license. You can copy and mess with this template. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
- Updating |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
title: Sen Li's Homepage | ||
page-top-title: Sen Li | ||
top-section-bg-text: Computer Science | ||
home-subtitle: Sen Li | 李森 | ||
copyright-text: '© Sen Li 2023-2024. All Rights Reserved.' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
|
||
Legasse is 3rd year Computer Science student at the University of Florida. He is a research assistant under Dr. Ebner in Ebner Lab at the University of Florida and Dr. Jonathan Cohen in the Neuroscience of Cognitive Control Lab at Princeton University. | ||
|
||
legasseremon[at]ufl.edu | ||
|
||
#### Education | ||
B.S., Computer Science, University of Florida, 2022-2026. | ||
|
||
#### Research Interests | ||
Cybersecurity, Cognitive Control, LLMs | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
- <strong>Remon L</strong> Example <strong>In revision.</strong> [[Code]](https://github.com/cslegasse/) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,177 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
|
||
<head> | ||
<meta charset="utf-8" /> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no" /> | ||
<meta name="description" content="Academic Webpage" /> | ||
<meta name="author" content="cslegasse" /> | ||
<title id="title"></title> | ||
|
||
<!-- Icon --> | ||
<link rel="icon" type="image/x-icon" href="static/assets/favicon.ico" /> | ||
|
||
<!-- Bootstrap icons--> | ||
<link href="https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.css" rel="stylesheet" /> | ||
|
||
<!-- Google fonts--> | ||
<link rel="preconnect" href="https://fonts.gstatic.com" /> | ||
<link href="https://fonts.googleapis.com/css2?family=Newsreader:ital,wght@0,600;1,600&display=swap" | ||
rel="stylesheet" /> | ||
<link | ||
href="https://fonts.googleapis.com/css2?family=Mulish:ital,wght@0,300;0,500;0,600;0,700;1,300;1,500;1,600;1,700&display=swap" | ||
rel="stylesheet" /> | ||
<link href="https://fonts.googleapis.com/css2?family=Kanit:ital,wght@0,400;1,400&display=swap" | ||
rel="stylesheet" /> | ||
|
||
<!-- Core theme CSS (includes Bootstrap)--> | ||
<link type="text/css" href="static/css/styles.css" rel="stylesheet" /> | ||
<link type="text/css" href="static/css/main.css" rel="stylesheet" /> | ||
|
||
<!-- Bootstrap core JS--> | ||
<script type="text/javascript" src="static/js/bootstrap.bundle.min.js"></script> | ||
|
||
<!-- For Compatability --> | ||
<script src="https://polyfill.io/v3/polyfill.min.js?features=es6"></script> | ||
|
||
<!-- Markdown --> | ||
<script type="text/javascript" src="static/js/marked.min.js"></script> | ||
|
||
<!-- Mathematics --> | ||
<script> | ||
// See https://docs.mathjax.org/en/latest/index.html for more details. | ||
MathJax = { | ||
tex: { | ||
packages: {}, // extensions to use | ||
inlineMath: [ // start/end delimiter pairs for in-line math | ||
['$', '$'], | ||
['\\(', '\\)'] | ||
], | ||
displayMath: [ // start/end delimiter pairs for display math | ||
['$$', '$$'], | ||
['\\[', '\\]'] | ||
], | ||
processEscapes: false, // use \$ to produce a literal dollar sign | ||
processEnvironments: true, // process \begin{xxx}...\end{xxx} outside math mode | ||
processRefs: true, // process \ref{...} outside of math mode | ||
digits: /^(?:[0-9]+(?:\{,\}[0-9]{3})*(?:\.[0-9]*)?|\.[0-9]+)/, // pattern for recognizing numbers | ||
tags: 'all', // or 'ams' or 'all' | ||
tagSide: 'right', // side for \tag macros | ||
tagIndent: '0.8em', // amount to indent tags | ||
useLabelIds: true, // use label name rather than tag for ids | ||
maxMacros: 10000, // maximum number of macro substitutions per expression | ||
maxBuffer: 5 * 1024, // maximum size for the internal TeX string (5K) | ||
// baseURL: // URL for use with links to tags (when there is a <base> tag in effect) | ||
// (document.getElementsByTagName('base').length === 0) ? '' : String(document.location).replace(/#.*$/, ''), | ||
formatError: // function called when TeX syntax errors occur | ||
(jax, err) => jax.formatError(err) | ||
} | ||
}; | ||
</script> | ||
<script type="text/javascript" id="MathJax-script" src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-svg.js"></script> | ||
<script type="text/javascript" id="MathJax-script" async src="https://cdn.jsdelivr.net/npm/mathjax@3/es5/tex-mml-chtml.js"></script> | ||
|
||
<!-- Core JS--> | ||
<script type="text/javascript" src="static/js/scripts.js"></script> | ||
<script type="text/javascript" src="static/js/js-yaml.min.js"></script> | ||
|
||
</head> | ||
|
||
<body id="page-top"> | ||
<!-- Navigation--> | ||
<nav class="header navbar navbar-expand-lg navbar-light fixed-top shadow-sm" id="mainNav"> | ||
<div class="container px-5"> | ||
<a id="page-top-title" class="navbar-brand fw-bold" href="#page-top"></a> | ||
<!-- <a href="#page-top"><img src="static/assets/img/CUMT_LOGO.svg" style="width: 11rem;"></a> --> | ||
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarResponsive" | ||
aria-controls="navbarResponsive" aria-expanded="false" aria-label="Toggle navigation"> | ||
MENU | ||
<i class="bi-list"></i> | ||
</button> | ||
<div class="collapse navbar-collapse" id="navbarResponsive"> | ||
<ul class="navbar-nav ms-auto me-4 my-3 my-lg-0"> | ||
<li class="nav-item"> | ||
<a class="nav-link me-lg-3" href="#page-top">HOME</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link me-lg-3" href="#publications">PUBLICATIONS</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link me-lg-3" href="#awards">AWARDS</a> | ||
</li> | ||
|
||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
|
||
<!-- Top Section --> | ||
<section class="top-section" style="background-image: url('static/assets/img/background.jpeg');"> | ||
<div class="top-section-content"> | ||
<div class="container px-5"> | ||
<h2 id="top-section-bg-text" class="text-white display-3 lh-1 font-alt"></h2> | ||
</div> | ||
</div> | ||
</section> | ||
<!-- Top Section --> | ||
|
||
<!-- Photo --> | ||
<div class="container px-5"> | ||
<div id="avatar"> | ||
<img class="shadow" src="static/assets/img/photo.png"> | ||
</div> | ||
</div> | ||
<!-- Photo --> | ||
|
||
<!-- Home --> | ||
<section class="bg-gradient-primary-to-secondary-light mt5 md5" id="home"> | ||
<div class="container px-5"> | ||
<header> | ||
<h2 id="home-subtitle"> </h2> | ||
<!-- <span class="bi bi-list"></span> --> | ||
</header> | ||
<div class="main-body" id="home-md"></div> | ||
</div> | ||
</section> | ||
<!-- Home --> | ||
|
||
<!-- Publications --> | ||
<section class="bg-gradient-primary-to-secondary-gray mt5 md5" id="publications"> | ||
<div class="container px-5"> | ||
<header> | ||
<h2 id="publications-subtitle"><i class="bi bi-file-text-fill"></i> PUBLICATIONS</h2> | ||
</header> | ||
<div class="main-body" id="publications-md"></div> | ||
|
||
</div> | ||
</section> | ||
<!-- Publications --> | ||
|
||
<!-- Awards --> | ||
<section class="bg-gradient-primary-to-secondary-light mt5 md5" id="awards"> | ||
<div class="container px-5"> | ||
<header> | ||
<h2 id="awards-subtitle"><i class="bi bi-award-fill"></i>AWARDS </h2> | ||
</header> | ||
<div class="main-body" id="awards-md"></div> | ||
|
||
</div> | ||
</section> | ||
<!-- Awards --> | ||
|
||
|
||
<!-- Footer--> | ||
<footer class="bg-bottom text-center py-5"> | ||
<div class="container px-5"> | ||
<div class="text-white-50 small"> | ||
<div id="copyright-text" class="mb-2"></div> | ||
<a id="github-link" href="https://github.com/cslegasse">Github</a> | ||
<span class="mx-1">·</span> | ||
<a id="license-link" href="https://github.com/cslegasse/cslegasse.github.io/blob/main/LICENSE">License</a> | ||
</div> | ||
</div> | ||
</footer> | ||
|
||
</body> | ||
|
||
</html> |
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.