Skip to content

Commit

Permalink
refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
jklj077 committed Dec 24, 2019
1 parent 5347903 commit 8759ffb
Show file tree
Hide file tree
Showing 11 changed files with 1,035 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
public/
.idea/
resources/_gen/
70 changes: 70 additions & 0 deletions archetypes/publication/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
---
# Documentation: https://sourcethemes.com/academic/docs/managing-content/

title: "{{ replace .Name "-" " " | title }}"
authors: []
date: {{ .Date }}
doi: ""

# Schedule page publish date (NOT publication's date).
publishDate: {{ .Date }}

# Publication type.
# Legend: 0 = Uncategorized; 1 = Conference paper; 2 = Journal article;
# 3 = Preprint / Working Paper; 4 = Report; 5 = Book; 6 = Book section;
# 7 = Thesis; 8 = Patent
publication_types: ["0"]

# Publication name and optional abbreviated publication name.
publication: ""
publication_short: ""

abstract: ""

# Summary. An optional shortened abstract.
summary: ""

tags: []
categories: []
featured: false

# Custom links (optional).
# Uncomment and edit lines below to show custom links.
# links:
# - name: Follow
# url: https://twitter.com
# icon_pack: fab
# icon: twitter

url_pdf:
url_arxiv:
url_code:
url_dataset:
url_poster:
url_project:
url_slides:
url_source:
url_video:

# Featured image
# To use, add an image named `featured.jpg/png` to your page's folder.
# Focal points: Smart, Center, TopLeft, Top, TopRight, Left, Right, BottomLeft, Bottom, BottomRight.
image:
caption: ""
focal_point: ""
preview_only: false

# Associated Projects (optional).
# Associate this publication with one or more of your projects.
# Simply enter your project's folder or file name without extension.
# E.g. `internal-project` references `content/project/internal-project/index.md`.
# Otherwise, set `projects: []`.
projects: []

# Slides (optional).
# Associate this publication with Markdown slides.
# Simply enter your slide deck's filename without extension.
# E.g. `slides: "example"` references `content/slides/example/index.md`.
# Otherwise, set `slides: ""`.
slides: ""
---
42 changes: 42 additions & 0 deletions assets/scss/custom.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
div.article-banner {
width: 90%;
margin-bottom: 20px;
margin-left: auto;
margin-right: auto;
padding: 15px;
}

.article-publication-short {
overflow: hidden;
float: right;
font-size: 14px;
letter-spacing: 0.03em;
color: rgba(0,0,0,0.54);
}

h4.article-title {
color: $sta-link;
text-decoration: none;
transition: color 0.6s ease;
}

.portrait-title h4 {
font-size: 0.9rem;
font-weight: 300;
color: rgba(0,0,0, 0.54);
margin: 0px 0 10px 0;
}

ul.ul-interests li ul li {
font-size: 0.85rem;
color: rgba(0, 0, 0, 0.6);
}

ul.ul-edu li .description p.institution {
font-size: 0.85rem;
color: rgba(0,0,0,0.6);
}

.people-widget .portrait-title h4 {
font-size: 0.5rem;
}
228 changes: 228 additions & 0 deletions i18n/en.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,228 @@
# Navigation

- id: toggle_navigation
translation: Toggle navigation

- id: table_of_contents
translation: Table of Contents

- id: on_this_page
translation: Contents

- id: back_to_top
translation: Back to top

# General

- id: related
translation: Related

- id: minute_read
translation: min read

- id: previous
translation: Previous

- id: next
translation: Next

- id: figure
translation: "Figure %d:"

- id: edit_page
translation: Edit this page

# Buttons

- id: btn_preprint
translation: Preprint

- id: btn_pdf
translation: PDF

- id: btn_cite
translation: Cite

- id: btn_slides
translation: Slides

- id: btn_video
translation: Video

- id: btn_code
translation: Code

- id: btn_arxiv
translation: arXiv

- id: btn_dataset
translation: Dataset

- id: btn_project
translation: Project

- id: btn_poster
translation: Poster

- id: btn_source
translation: Source Document

- id: btn_copy
translation: Copy

- id: btn_download
translation: Download

# About widget

- id: interests
translation: Interests

- id: education
translation: Education

- id: user_profile_latest
translation: Latest

# Accomplishments widget

- id: see_certificate
translation: See certificate

# Experience widget

- id: present
translation: Present

# Pages widget

- id: more_pages
translation: See all

- id: more_posts
translation: See all posts

- id: more_talks
translation: See all talks

- id: more_publications
translation: See all publications

# Contact widget

- id: contact_name
translation: Name

- id: contact_email
translation: Email

- id: contact_message
translation: Message

- id: contact_send
translation: Send

- id: book_appointment
translation: Book an appointment

# Publication/Talk details

- id: abstract
translation: Abstract

- id: publication
translation: Publication

- id: publication_type
translation: Type

- id: date
translation: Date

- id: last_updated
translation: Last updated on

- id: event
translation: Event

- id: location
translation: Location

- id: pub_uncat
translation: Uncategorized

- id: pub_conf
translation: Conference paper

- id: pub_journal
translation: Journal article

- id: pub_preprint
translation: Preprint

- id: pub_report
translation: Report

- id: pub_book
translation: Book

- id: pub_book_section
translation: Book section

- id: pub_thesis
translation: Thesis

- id: pub_patent
translation: Patent

# Project details

- id: open_project_site
translation: Go to Project Site

# Default titles for archive pages

- id: posts
translation: Posts

- id: publications
translation: Publications

- id: talks
translation: Talks

- id: projects
translation: Projects

# Search

- id: search
translation: Search

- id: search_placeholder
translation: Search...

- id: search_results
translation: results found

- id: search_no_results
translation: No results found

# Error 404

- id: page_not_found
translation: Page not found

- id: 404_recommendations
translation: Perhaps you were looking for one of these?

# Cookie consent

- id: cookie_message
translation: This website uses cookies to ensure you get the best experience on our website.

- id: cookie_dismiss
translation: Got it!

- id: cookie_learn
translation: Learn more
Loading

0 comments on commit 8759ffb

Please sign in to comment.