Skip to content

Commit

Permalink
Merge pull request #2 from itatikola/publish
Browse files Browse the repository at this point in the history
Publish
  • Loading branch information
itatikola authored Dec 2, 2023
2 parents f32ba52 + 581787f commit 9fb0387
Show file tree
Hide file tree
Showing 27 changed files with 309 additions and 375 deletions.
Binary file modified .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
title: Indira Tatikola
email: [email protected]
description: >- # this means to ignore newlines until "baseurl:"
Hi! I’m Indira and I’m studying computer science at the Georgia Institue of Technology.
Hi! I’m Indira and I’m studying computer science at the Georgia Institute of Technology.
My areas of interest are computer vision, graphics, and machine learning and their applications in social media.
Feel free to reach out through any platform!
baseurl: ''
Expand Down
6 changes: 6 additions & 0 deletions _data/navigation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
- name: Home
link: /
- name: About
link: /about.html
- name: Blog
link: /blog.html
Binary file renamed testpage/.DS_Store → _includes/.DS_Store
Binary file not shown.
36 changes: 36 additions & 0 deletions _includes/footer.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
<footer class="site-footer h-card">
<data class="u-url" href="{{ "/" | relative_url }}"></data>

<div class="wrapper">

<!--<h2 class="footer-heading">{{ site.title | escape }}</h2>-->

<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">
{%- if site.author -%}
{{ site.author | escape }}
{%- else -%}
{{ site.title | escape }}
{%- endif -%}
{%- if site.email -%}
<li><a class="u-email" href="mailto:{{ site.email }}">{{ site.email }}</a></li>
{%- endif -%}
</li>
</ul>
</div>

<div class="footer-col footer-col-2">
{%- include social.html -%}
</div>
<!---
<div class="footer-col footer-col-3">
<p>{{- site.description | escape -}}</p>
</div>
--->
</div>

</div>

</footer>
31 changes: 31 additions & 0 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
<header class="site-header" role="banner">

<div class="wrapper">
{%- assign default_paths = site.pages | map: "path" -%}
{%- assign page_paths = site.header_pages | default: default_paths -%}
<a class="site-title" rel="author" href="{{ "/" | relative_url }}">{{ site.title | escape }}</a>

<!--
{%- if page_paths -%}
<nav class="site-nav">
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger">
<span class="menu-icon">
<svg viewBox="0 0 18 15" width="18px" height="15px">
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
</svg>
</span>
</label>
<div class="trigger">
{%- for path in page_paths -%}
{%- assign my_page = site.pages | where: "path", path | first -%}
{%- if my_page.title -%}
<a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
{%- endif -%}
{%- endfor -%}
</div>
</nav>
{%- endif -%} -->
</div>
</header>
7 changes: 7 additions & 0 deletions _includes/navigation.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
<nav>
{% for item in site.data.navigation %}
<a href = "{{ item.link }}" {% if page.url == item.link %} class="current" {% endif %}>
{{ item.name }}
</a>
{% endfor %}
</nav>
20 changes: 20 additions & 0 deletions _layouts/default.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">

{%- include head.html -%}

<body>

{%- include header.html -%}

<main class="page-content" aria-label="Content">
<div class="wrapper">
{{ content }}
</div>
</main>

{%- include footer.html -%}

</body>

</html>
7 changes: 7 additions & 0 deletions _layouts/post.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
layout: default
---
<h1>{{ page.title }}</h1>
<p>{{ page.date | date_to_string }} - {{ page.author }}</p>

{{ content }}
Binary file added _posts/.DS_Store
Binary file not shown.
13 changes: 13 additions & 0 deletions _posts/2018-08-20-bananas.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
layout: post
author: jill
---

A banana is an edible fruit – botanically a berry – produced by several
kinds of large herbaceous flowering plants in the genus Musa.

In some countries, bananas used for cooking may be called "plantains",
distinguishing them from dessert bananas. The fruit is variable in size,
color, and firmness, but is usually elongated and curved, with soft
flesh rich in starch covered with a rind, which may be green, yellow,
red, purple, or brown when ripe.
30 changes: 0 additions & 30 deletions _posts/2023-11-15-welcome-to-jekyll.markdown

This file was deleted.

3 changes: 3 additions & 0 deletions _sass/main.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
.current {
color: rgb(246, 120, 141);
}
83 changes: 83 additions & 0 deletions _site/2018/08/20/bananas.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,83 @@
<!DOCTYPE html>
<html lang="en"><head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.8.0 -->
<title>Bananas | Indira Tatikola</title>
<meta name="generator" content="Jekyll v3.9.3" />
<meta property="og:title" content="Bananas" />
<meta name="author" content="jill" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="A banana is an edible fruit – botanically a berry – produced by several kinds of large herbaceous flowering plants in the genus Musa." />
<meta property="og:description" content="A banana is an edible fruit – botanically a berry – produced by several kinds of large herbaceous flowering plants in the genus Musa." />
<link rel="canonical" href="http://localhost:4000/2018/08/20/bananas.html" />
<meta property="og:url" content="http://localhost:4000/2018/08/20/bananas.html" />
<meta property="og:site_name" content="Indira Tatikola" />
<meta property="og:type" content="article" />
<meta property="article:published_time" content="2018-08-20T00:00:00-04:00" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Bananas" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"BlogPosting","author":{"@type":"Person","name":"jill"},"dateModified":"2018-08-20T00:00:00-04:00","datePublished":"2018-08-20T00:00:00-04:00","description":"A banana is an edible fruit – botanically a berry – produced by several kinds of large herbaceous flowering plants in the genus Musa.","headline":"Bananas","mainEntityOfPage":{"@type":"WebPage","@id":"http://localhost:4000/2018/08/20/bananas.html"},"url":"http://localhost:4000/2018/08/20/bananas.html"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/main.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Indira Tatikola" /></head>
<body><header class="site-header" role="banner">

<div class="wrapper"><a class="site-title" rel="author" href="/">Indira Tatikola</a>

<!--<nav class="site-nav">
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger">
<span class="menu-icon">
<svg viewBox="0 0 18 15" width="18px" height="15px">
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
</svg>
</span>
</label>
<div class="trigger"><a class="page-link" href="/">Home</a></div>
</nav>-->
</div>
</header><main class="page-content" aria-label="Content">
<div class="wrapper">
<h1>Bananas</h1>
<p>20 Aug 2018 - jill</p>

<p>A banana is an edible fruit – botanically a berry – produced by several
kinds of large herbaceous flowering plants in the genus Musa.</p>

<p>In some countries, bananas used for cooking may be called “plantains”,
distinguishing them from dessert bananas. The fruit is variable in size,
color, and firmness, but is usually elongated and curved, with soft
flesh rich in starch covered with a rind, which may be green, yellow,
red, purple, or brown when ripe.</p>

</div>
</main><footer class="site-footer h-card">
<data class="u-url" href="/"></data>

<div class="wrapper">

<!--<h2 class="footer-heading">Indira Tatikola</h2>-->

<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">Indira Tatikola</li>
</ul>
</div>

<div class="footer-col footer-col-2"><li><a class="u-email" href="mailto:[email protected]">[email protected]</a></li><ul class="social-media-list"><li><a href="https://github.com/itatikola"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">itatikola</span></a></li><li><a href="https://www.linkedin.com/in/indiratatikola"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#linkedin"></use></svg> <span class="username">indiratatikola</span></a></li></ul>
</div>
<!---
<div class="footer-col footer-col-3">
<p>Hi! I’m Indira and I’m studying computer science at the Georgia Institute of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform! </p>
</div>
--->
</div>

</div>

</footer> </body>

</html>
79 changes: 41 additions & 38 deletions _site/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,38 +3,40 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1"><!-- Begin Jekyll SEO tag v2.8.0 -->
<title>Indira Tatikola | Hi! I’m Indira and I’m studying computer science at the Georgia Institue of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform! Especially if you share my academic interests - I always am looking to work on cool projects and meet cool people.</title>
<title>Indira Tatikola | Hi! I’m Indira and I’m studying computer science at the Georgia Institute of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform!</title>
<meta name="generator" content="Jekyll v3.9.3" />
<meta property="og:title" content="Indira Tatikola" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Hi! I’m Indira and I’m studying computer science at the Georgia Institue of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform! Especially if you share my academic interests - I always am looking to work on cool projects and meet cool people." />
<meta property="og:description" content="Hi! I’m Indira and I’m studying computer science at the Georgia Institue of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform! Especially if you share my academic interests - I always am looking to work on cool projects and meet cool people." />
<meta name="description" content="Hi! I’m Indira and I’m studying computer science at the Georgia Institute of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform!" />
<meta property="og:description" content="Hi! I’m Indira and I’m studying computer science at the Georgia Institute of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform!" />
<link rel="canonical" href="http://localhost:4000/404.html" />
<meta property="og:url" content="http://localhost:4000/404.html" />
<meta property="og:site_name" content="Indira Tatikola" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="Indira Tatikola" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","description":"Hi! I’m Indira and I’m studying computer science at the Georgia Institue of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform! Especially if you share my academic interests - I always am looking to work on cool projects and meet cool people.","headline":"Indira Tatikola","url":"http://localhost:4000/404.html"}</script>
{"@context":"https://schema.org","@type":"WebPage","description":"Hi! I’m Indira and I’m studying computer science at the Georgia Institute of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform!","headline":"Indira Tatikola","url":"http://localhost:4000/404.html"}</script>
<!-- End Jekyll SEO tag -->
<link rel="stylesheet" href="/assets/main.css"><link type="application/atom+xml" rel="alternate" href="http://localhost:4000/feed.xml" title="Indira Tatikola" /></head>
<body><header class="site-header" role="banner">

<div class="wrapper"><a class="site-title" rel="author" href="/">Indira Tatikola</a><nav class="site-nav">
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger">
<span class="menu-icon">
<svg viewBox="0 0 18 15" width="18px" height="15px">
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
</svg>
</span>
</label>
<div class="wrapper"><a class="site-title" rel="author" href="/">Indira Tatikola</a>

<div class="trigger"><a class="page-link" href="/about/">About</a></div>
</nav></div>
</header>
<main class="page-content" aria-label="Content">
<!--<nav class="site-nav">
<input type="checkbox" id="nav-trigger" class="nav-trigger" />
<label for="nav-trigger">
<span class="menu-icon">
<svg viewBox="0 0 18 15" width="18px" height="15px">
<path d="M18,1.484c0,0.82-0.665,1.484-1.484,1.484H1.484C0.665,2.969,0,2.304,0,1.484l0,0C0,0.665,0.665,0,1.484,0 h15.032C17.335,0,18,0.665,18,1.484L18,1.484z M18,7.516C18,8.335,17.335,9,16.516,9H1.484C0.665,9,0,8.335,0,7.516l0,0 c0-0.82,0.665-1.484,1.484-1.484h15.032C17.335,6.031,18,6.696,18,7.516L18,7.516z M18,13.516C18,14.335,17.335,15,16.516,15H1.484 C0.665,15,0,14.335,0,13.516l0,0c0-0.82,0.665-1.483,1.484-1.483h15.032C17.335,12.031,18,12.695,18,13.516L18,13.516z"/>
</svg>
</span>
</label>
<div class="trigger"><a class="page-link" href="/">Home</a></div>
</nav>-->
</div>
</header><main class="page-content" aria-label="Content">
<div class="wrapper">
<style type="text/css" media="screen">
.container {
Expand All @@ -59,29 +61,30 @@ <h1>404</h1>

</div>
</main><footer class="site-footer h-card">
<data class="u-url" href="/"></data>

<div class="wrapper">

<h2 class="footer-heading">Indira Tatikola</h2>

<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">Indira Tatikola</li><li><a class="u-email" href="mailto:[email protected]">[email protected]</a></li></ul>
</div>

<div class="footer-col footer-col-2"><ul class="social-media-list"><li><a href="https://github.com/itatikola"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">itatikola</span></a></li><li><a href="https://www.linkedin.com/in/indiratatikola"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#linkedin"></use></svg> <span class="username">indiratatikola</span></a></li></ul>
<data class="u-url" href="/"></data>

<div class="wrapper">

<!--<h2 class="footer-heading">Indira Tatikola</h2>-->

<div class="footer-col-wrapper">
<div class="footer-col footer-col-1">
<ul class="contact-list">
<li class="p-name">Indira Tatikola</li>
</ul>
</div>

<div class="footer-col footer-col-2"><li><a class="u-email" href="mailto:[email protected]">[email protected]</a></li><ul class="social-media-list"><li><a href="https://github.com/itatikola"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#github"></use></svg> <span class="username">itatikola</span></a></li><li><a href="https://www.linkedin.com/in/indiratatikola"><svg class="svg-icon"><use xlink:href="/assets/minima-social-icons.svg#linkedin"></use></svg> <span class="username">indiratatikola</span></a></li></ul>
</div>

<div class="footer-col footer-col-3">
<p>Hi! I’m Indira and I’m studying computer science at the Georgia Institue of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform! Especially if you share my academic interests - I always am looking to work on cool projects and meet cool people. </p>
<!---
<div class="footer-col footer-col-3">
<p>Hi! I’m Indira and I’m studying computer science at the Georgia Institute of Technology. My areas of interest are computer vision, graphics, and machine learning and their applications in social media. Feel free to reach out through any platform! </p>
</div>
--->
</div>

</div>

</div>

</footer>
</body>

</footer> </body>

</html>
Loading

0 comments on commit 9fb0387

Please sign in to comment.