From a51f899e6caf9217d900a6f5deabba0ad63ae653 Mon Sep 17 00:00:00 2001 From: Abhay Goel Date: Wed, 19 Jun 2024 13:31:59 -0600 Subject: [PATCH] Test with blog posts --- .../2020-02-26-flake-it-till-you-make-it.md | 18 ---- _posts/2020-02-28-sample-markdown.md | 95 ------------------- blog/index.html | 6 ++ 3 files changed, 6 insertions(+), 113 deletions(-) delete mode 100644 _posts/2020-02-26-flake-it-till-you-make-it.md delete mode 100644 _posts/2020-02-28-sample-markdown.md create mode 100644 blog/index.html diff --git a/_posts/2020-02-26-flake-it-till-you-make-it.md b/_posts/2020-02-26-flake-it-till-you-make-it.md deleted file mode 100644 index 768f6328da09..000000000000 --- a/_posts/2020-02-26-flake-it-till-you-make-it.md +++ /dev/null @@ -1,18 +0,0 @@ ---- -layout: post -title: Flake it till you make it -subtitle: Excerpt from Soulshaping by Jeff Brown -cover-img: /assets/img/path.jpg -thumbnail-img: /assets/img/thumb.png -share-img: /assets/img/path.jpg -tags: [books, test] -author: Sharon Smith and Barry Simpson ---- - -Under what circumstances should we step off a path? When is it essential that we finish what we start? If I bought a bag of peanuts and had an allergic reaction, no one would fault me if I threw it out. If I ended a relationship with a woman who hit me, no one would say that I had a commitment problem. But if I walk away from a seemingly secure route because my soul has other ideas, I am a flake? - -The truth is that no one else can definitively know the path we are here to walk. It’s tempting to listen—many of us long for the omnipotent other—but unless they are genuine psychic intuitives, they can’t know. All others can know is their own truth, and if they’ve actually done the work to excavate it, they will have the good sense to know that they cannot genuinely know anyone else’s. Only soul knows the path it is here to walk. Since you are the only one living in your temple, only you can know its scriptures and interpretive structure. - -At the heart of the struggle are two very different ideas of success—survival-driven and soul-driven. For survivalists, success is security, pragmatism, power over others. Success is the absence of material suffering, the nourishing of the soul be damned. It is an odd and ironic thing that most of the material power in our world often resides in the hands of younger souls. Still working in the egoic and material realms, they love the sensations of power and focus most of their energy on accumulation. Older souls tend not to be as materially driven. They have already played the worldly game in previous lives and they search for more subtle shades of meaning in this one—authentication rather than accumulation. They are often ignored by the culture at large, although they really are the truest warriors. - -A soulful notion of success rests on the actualization of our innate image. Success is simply the completion of a soul step, however unsightly it may be. We have finished what we started when the lesson is learned. What a fear-based culture calls a wonderful opportunity may be fruitless and misguided for the soul. Staying in a passionless relationship may satisfy our need for comfort, but it may stifle the soul. Becoming a famous lawyer is only worthwhile if the soul demands it. It is an essential failure if you are called to be a monastic this time around. If you need to explore and abandon ten careers in order to stretch your soul toward its innate image, then so be it. Flake it till you make it. \ No newline at end of file diff --git a/_posts/2020-02-28-sample-markdown.md b/_posts/2020-02-28-sample-markdown.md deleted file mode 100644 index 6a59d6a14aac..000000000000 --- a/_posts/2020-02-28-sample-markdown.md +++ /dev/null @@ -1,95 +0,0 @@ ---- -layout: post -title: Sample blog post to learn markdown tips -subtitle: There's lots to learn! -gh-repo: daattali/beautiful-jekyll -gh-badge: [star, fork, follow] -tags: [test] -comments: true -mathjax: true -author: Bill Smith ---- - -{: .box-success} -This is a demo post to show you how to write blog posts with markdown. I strongly encourage you to [take 5 minutes to learn how to write in markdown](https://markdowntutorial.com/) - it'll teach you how to transform regular text into bold/italics/tables/etc.
I also encourage you to look at the [code that created this post](https://raw.githubusercontent.com/daattali/beautiful-jekyll/master/_posts/2020-02-28-sample-markdown.md) to learn some more advanced tips about using markdown in Beautiful Jekyll. - -**Here is some bold text** - -## Here is a secondary heading - -[This is a link to a different site](https://deanattali.com/) and [this is a link to a section inside this page](#local-urls). - -Here's a table: - -| Number | Next number | Previous number | -| :------ |:--- | :--- | -| Five | Six | Four | -| Ten | Eleven | Nine | -| Seven | Eight | Six | -| Two | Three | One | - -You can use [MathJax](https://www.mathjax.org/) to write LaTeX expressions. For example: -When \\(a \ne 0\\), there are two solutions to \\(ax^2 + bx + c = 0\\) and they are $$x = {-b \pm \sqrt{b^2-4ac} \over 2a}.$$ - -How about a yummy crepe? - -![Crepe](https://beautifuljekyll.com/assets/img/crepe.jpg) - -It can also be centered! - -![Crepe](https://beautifuljekyll.com/assets/img/crepe.jpg){: .mx-auto.d-block :} - -Here's a code chunk: - -~~~ -var foo = function(x) { - return(x + 5); -} -foo(3) -~~~ - -And here is the same code with syntax highlighting: - -```javascript -var foo = function(x) { - return(x + 5); -} -foo(3) -``` - -And here is the same code yet again but with line numbers: - -{% highlight javascript linenos %} -var foo = function(x) { - return(x + 5); -} -foo(3) -{% endhighlight %} - -## Boxes -You can add notification, warning and error boxes like this: - -### Notification - -{: .box-note} -**Note:** This is a notification box. - -### Warning - -{: .box-warning} -**Warning:** This is a warning box. - -### Error - -{: .box-error} -**Error:** This is an error box. - -## Local URLs in project sites {#local-urls} - -When hosting a *project site* on GitHub Pages (for example, `https://USERNAME.github.io/MyProject`), URLs that begin with `/` and refer to local files may not work correctly due to how the root URL (`/`) is interpreted by GitHub Pages. You can read more about it [in the FAQ](https://beautifuljekyll.com/faq/#links-in-project-page). To demonstrate the issue, the following local image will be broken **if your site is a project site:** - -![Crepe](/assets/img/crepe.jpg) - -If the above image is broken, then you'll need to follow the instructions [in the FAQ](https://beautifuljekyll.com/faq/#links-in-project-page). Here is proof that it can be fixed: - -![Crepe]({{ '/assets/img/crepe.jpg' | relative_url }}) diff --git a/blog/index.html b/blog/index.html new file mode 100644 index 000000000000..8bd63eb5717d --- /dev/null +++ b/blog/index.html @@ -0,0 +1,6 @@ +--- +layout: home +title: Blog Posts +--- + +What does text here do? \ No newline at end of file