58 |
59 | {% if site.ins_logo %}
60 |

61 | {% endif %}
62 |
{{ site.title }}
63 |
64 | {% for x in site.nav %}
65 | {% if x.name == "Resume" %}
66 | - {{ x.name }}
67 | {% else %}
68 |
- {{ x.name }}
69 | {% endif %}
70 | {% if forloop.last == false %}
71 | /
72 | {% endif %}
73 |
74 | {% endfor %}
75 |
76 |
77 |
78 |
79 | {% if page.is_contact == true %}
80 |
81 | {% else %}
82 |
83 | {% endif %}
84 | {{ content }}
85 | {% if site.footer == true %}
86 |
87 |
88 | {{ site.footer_text }}
89 |
90 | {% endif %}
91 |
92 |
93 | {% if site.tracking_id %}
94 |
102 | {% endif %}
103 |
104 |
106 |
--------------------------------------------------------------------------------
/_sass/_style.scss:
--------------------------------------------------------------------------------
1 | @import "vars";
2 |
3 | /*
4 | * Basic
5 | */
6 |
7 | html {
8 | height: 100%;
9 | margin: 0;
10 | padding: 0;
11 | }
12 | body {
13 | margin: 0;
14 | font-family: "Inconsolata";
15 | height: 100%;
16 | }
17 | a {
18 | text-decoration: none;
19 | color: $accent;
20 | }
21 | a:hover {
22 | text-decoration: underline;
23 | }
24 | hr {
25 | border: 0;
26 | height: 0;
27 | border-top: 1px solid rgba(0, 0, 0, 0.1);
28 | border-bottom: 1px solid rgba(255, 255, 255, 0.3);
29 | }
30 |
31 | /*
32 | * Navbar
33 | */
34 |
35 | #author-name {
36 | font-size: 30px;
37 | color: #272727;
38 | display: inline-block;
39 | }
40 | .navbar {
41 | padding: 50px 0 50px 0;
42 | }
43 | .navbar-ul {
44 | display: inline-block;
45 | margin: 0;
46 | padding: 5px 0 5px 0;
47 | margin-left: 20px;
48 | }
49 | .nav-list {
50 | list-style-type: none;
51 | margin: 0 5px 0 10px;
52 | }
53 | .alignable {
54 | display: inline-block;
55 | }
56 | .pull-left {
57 | @extend .alignable;
58 | float: left;
59 | }
60 | .pull-right {
61 | @extend .alignable;
62 | float: right;
63 | }
64 |
65 | /* Divs */
66 |
67 | .container {
68 | max-width: $max-width;
69 | margin: auto;
70 | }
71 | .wrapper {
72 | min-height: 100%;
73 | }
74 |
75 | /* Institute Image */
76 |
77 | #ins-logo {
78 | margin: auto;
79 | display: block;
80 | max-height: 100px;
81 | text-align: center;
82 | }
83 |
84 | /* Mobile */
85 |
86 | @media (max-width: 800px) {
87 | .container {
88 | max-width: $med-width;
89 | transition: 0.3s ease all;
90 | }
91 | }
92 |
93 | @media (max-width: 650px) {
94 | .container {
95 | max-width: 83%;
96 | }
97 | .navbar-ul {
98 | margin-top: 5px;
99 | }
100 | }
101 |
102 | @media (max-width: 500px) {
103 | .navbar {
104 | text-align: center;
105 | padding: 50px 0px 0px 0px;
106 | }
107 | #author-name {
108 | width: 100%;
109 | float: none;
110 | }
111 | #navlist {
112 | padding: 10px 0 10px 0;
113 | margin: 0;
114 | display: block;
115 | float: none;
116 | text-align: center;
117 | width: 100%;
118 | }
119 | #navlist li.alignable {
120 | display: inline-block;
121 | }
122 | #navlist li.pull-left {
123 | float: none;
124 | }
125 | #navlist li.nav-list {
126 | margin: 0;
127 | }
128 | }
129 |
130 | @import "typography";
131 | @import "tables";
132 |
--------------------------------------------------------------------------------
/_sass/tables.scss:
--------------------------------------------------------------------------------
1 | table {
2 | margin: 15px 0;
3 | border-collapse: collapse;
4 | width: 100%;
5 | padding: 0;
6 | }
7 | table tr {
8 | border-top: 1px solid #cccccc;
9 | background-color: white;
10 | margin: 0;
11 | padding: 0;
12 | }
13 | table tr:nth-child(2n) {
14 | background-color: #f8f8f8;
15 | }
16 | table tr th {
17 | font-weight: bold;
18 | border: 1px solid #cccccc;
19 | text-align: left;
20 | margin: 0;
21 | padding: 6px 13px;
22 | }
23 | table tr td {
24 | border: 1px solid #cccccc;
25 | text-align: left;
26 | margin: 0;
27 | padding: 6px 13px;
28 | }
29 | table tr th :first-child, table tr td :first-child {
30 | margin: 0;
31 | }
32 | table tr th :last-child, table tr td :last-child {
33 | margin: 0;
34 | }
35 |
--------------------------------------------------------------------------------
/_sass/typography.scss:
--------------------------------------------------------------------------------
1 | @import "vars";
2 |
3 | .content {
4 | a:hover {
5 | text-decoration: underline;
6 | }
7 | ol {
8 | counter-reset: list;
9 | }
10 | ol > li {
11 | list-style-position: none;
12 | position: relative;
13 | list-style: none;
14 | margin-top: 5px;
15 | margin-bottom: 5px;
16 | }
17 | ul > li {
18 | margin: 5px 0 5px 0;
19 | }
20 | ul {
21 | padding: 0 20px 0 20px;;
22 | }
23 | ol {
24 | padding: 0 30px 0 30px;
25 | }
26 | ol > li:before {
27 | content: "[" counter(list, decimal) "] ";
28 | counter-increment: list;
29 | position: absolute;
30 | left: -30px;
31 | }
32 | blockquote {
33 | //border: 1px solid black;
34 | border-left: 5px solid #333333;
35 | margin: 20px 0 20px 0;
36 | padding: 2px 8px 2px 8px;
37 | font-style: italic;
38 | }
39 | .profile-picture {
40 | height: $image-size;
41 | width: $image-size;
42 | position: relative;
43 | margin: -10px 0 0 15px;
44 | float: right;
45 | border-radius: 50%;
46 | p & {
47 | padding: 0;
48 | margin: 0;
49 | }
50 | @media (max-width: $small-width) {
51 | img {
52 | margin-top: -5px;
53 | }
54 | }
55 | }
56 | img {
57 | text-align: center;
58 | width: 100%;
59 | }
60 | }
61 |
--------------------------------------------------------------------------------
/_sass/vars.scss:
--------------------------------------------------------------------------------
1 | /*
2 | * Customization Variables
3 | */
4 |
5 | $accent: #FF0F00;
6 | $image-size: 85px;
7 |
8 | /*
9 | * Build Variables, don't touch
10 | */
11 |
12 | $max-width: 700px;
13 | $med-width: 600px;
14 | $small-width: 480px;
15 |
--------------------------------------------------------------------------------
/bits-logo.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ankitsultana/researcher/6e8d54c936da772028b5871e3626d070e17d3b3a/bits-logo.png
--------------------------------------------------------------------------------
/contact.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | is_contact: true
4 | ---
5 |
6 | * Email: [foo@xyz.com](mailto:foo@xyz.com)
7 |
8 | * Phone: [+91-123123](tel:+91-123123)
9 |
10 | ---
11 |
12 | ## Mailing Address
13 |
14 | > 221B, Baker Street
15 | >
16 | > London
17 | >
18 | > United Kingdom
19 |
20 | ---
21 |
22 | ## Social
23 |
24 | 1. [Facebook](#)
25 | 2. [Twitter](#)
26 | 3. [Google+](#)
27 |
--------------------------------------------------------------------------------
/css/main.scss:
--------------------------------------------------------------------------------
1 | ---
2 | ---
3 | @import "style";
4 |
--------------------------------------------------------------------------------
/index.md:
--------------------------------------------------------------------------------
1 | ---
2 | layout: default
3 | ---
4 |
5 | ## About Me
6 |
7 |

8 |
9 | Hi! I am a junior year student of B.E. Computer Science at Birla Institute of Technology and Science, Pilani.
10 |
11 | This is a jekyll based resume template. You can find the full source code on [GitHub](https://github.com/bk2dcradle/researcher)
12 |
13 | ## Research Interest
14 |
15 | Lorem ipsum dolor sit amet, consectetur adipiscing elit. Aliquam finibus ipsum ac erat aliquam dapibus. Vestibulum vehicula placerat ex, a consectetur odio pharetra quis. Mauris id urna ante. Fusce pharetra diam ac nisi aliquet, vel egestas ex iaculis. Pellentesque laoreet cursus tellus sed pellentesque. Praesent a rhoncus elit. Nunc ipsum nisl, consequat sit amet pretium quis, gravida id ipsum.
16 |
17 | ## Publications
18 |
19 | 1. F.Bar, J.Doe: Effects of having a placeholder of a name
20 | 2. S.Holmes, J.Watson: Consequences of living with a sociopath in London
21 |
22 | ## Typography
23 |
24 | This is a [link](http://google.com). Something *italics* and something **bold**.
25 |
26 | Here is a table
27 |
28 | Year | Award | Category
29 | -----|-------|--------
30 | 2014 | Emmy | Won Outstanding Lead Actor in a miniseries or a movie
31 | 2015 | BAFTA | Nominated for Best Leading Actor for Sherlock
32 | 2014 | Satellite | Won Best Actor miniseries or television film
33 |
34 | Here is a horizontal rule
35 |
36 | ---
37 |
38 | Here is a blockquote
39 |
40 | > To a great mind, nothing is little
41 |
42 | ## References
43 |
44 | * Foo Bar: Head of Department, Placeholder Names, Lorem
45 | * John Doe: Associate Professor, Department of Computer Science, Ipsum
46 |
--------------------------------------------------------------------------------
/resume.pdf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ankitsultana/researcher/6e8d54c936da772028b5871e3626d070e17d3b3a/resume.pdf
--------------------------------------------------------------------------------
/sherlock.jpg:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/ankitsultana/researcher/6e8d54c936da772028b5871e3626d070e17d3b3a/sherlock.jpg
--------------------------------------------------------------------------------