-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
113 lines (101 loc) · 3.32 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
---
layout: default
title: Portfolio
image: "/static/images/abbas8.jpg"
---
<div class="home">
<!-- About me -->
<div class="block">
<div class="block-header">
<h2>About me</h2>
<a href="/about">Read more</a>
</div>
<div class="block-content">
<p>
This page highlights several of my personal software and research projects (snippets and resources). I love programming (turning everything into code), mathematics, and hacking stuff. Curious for more? Don't forget to check out the <a href="/about" style="color: #F9644B;">READ MORE</a> link. Happy exploring! :)
</p>
</div>
</div>
<!-- Main projects list -->
<!-- <div class="block">
<div class="block-header">
<h2>Main work</h2>
<a href="/projects">See all</a>
</div>
<div class="block-content">
{% assign projects = site.projects | sort: 'date' | reverse %}
{% for post in projects %}
{% if post.highlight %}
<article class="project">
{% if post.direct %}
<a href="{{ post.direct }}">
{% else %}
<a href="{{ site.url }}{{ post.url }}">
{% endif %}
<div class="project-left">
<img src="{{ site.url }}/{{ post.image }}" alt="{{ post.title }}" />
</div>
<div class="project-right">
<p><strong>{{ post.title }}</strong> {{ post.shortdesc }}</p>
</div>
</a>
</article>
{% endif %}
{% endfor %}
</div> -->
<!-- Prototypes, archives and sub projects -->
<div class="block">
<div class="block-header">
<h2>CODE SNIPPETS and Papers</h2>
<a href="/projects">See all</a>
</div>
<div class="block-content">
{% assign projects = site.projects | sort: 'date' | reverse %}
{% for post in projects %}
{% unless post.highlight %}
<article class="project">
{% if post.direct %}
<a href="{{ post.direct }}">
{% else %}
<a href="{{ site.url }}{{ post.url }}">
{% endif %}
<div class="project-left">
<img src="{{ site.url }}/{{ post.image }}" alt="{{ post.title }}" />
</div>
<div class="project-right">
<p><strong>{{ post.title }}</strong> {{ post.shortdesc }}</p>
</div>
</a>
</article>
{% endunless %}
{% endfor %}
</div>
</div>
<!-- Code snippets and tutorials -->
<!-- <div class="block"> -->
<!-- <div class="block-header">
<h2>Code snippets (archives)</h2>
<a href="/code">See All</a>
</div> -->
<!-- <div class="block-content">
{% assign snippets = site.code | sort: 'date' | reverse %}
{% for p in snippets limit:15 %}
<div class="element">
<a href="{{ site.url }}{{ p.url }}">
<ul class="tags">
{% for tag in p.tags %}
<li class="tag {{ tag }}">{{ tag }}</li>
{% endfor %}
</ul>
<p class="element-title">
{{ p.title }}
</p>
<p class="element-desc">
{{ p.shortdesc }}
</p>
</a>
</div>
{% endfor %}
</div> -->
<!-- </div> -->
</div>