forked from Department_of_Internautics/join.resist.is
Convert site to Jekyll
- Add Jekyll configuration (_config.yml) - Create default layout with proper HTML structure - Extract CSS to separate file (assets/css/main.css) - Convert index.html to Jekyll format (index.md) - Move image to assets directory - Add Gemfile for Jekyll dependencies - Backup original index.html The site now uses Jekyll static site generator while maintaining the same visual appearance and functionality as the original.
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
<!DOCTYPE html>
|
||||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>{% if page.title %}{{ page.title }} - {{ site.title }}{% else %}{{ site.title }}{% endif %}</title>
|
||||
<meta name="description" content="{% if page.description %}{{ page.description }}{% else %}{{ site.description }}{% endif %}">
|
||||
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url }}">
|
||||
</head>
|
||||
<body>
|
||||
<div class="main-container">
|
||||
{{ content }}
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
|
||||
Reference in New Issue
Block a user