Skip to content

Commit

Permalink
More restricted highlights
Browse files Browse the repository at this point in the history
  • Loading branch information
Khemarato Bhikkhu committed Jan 3, 2024
1 parent 24cfe72 commit 23706f7
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 27 deletions.
22 changes: 22 additions & 0 deletions _content/articles/mahayana-sutras_drewes-david.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
---
title: "Mahāyāna Sūtras in Recent Scholarship"
authors:
- "David Drewes"
external_url: "https://thecjbs.org/wp-content/uploads/2021/07/36-74_Drewes_Mahayana-Sutras.pdf"
drive_links:
- "https://drive.google.com/file/d/1Kv4V2WjciYVlTEb-9Kq_h1CEumi_kt9K/view?usp=drivesdk"
course: roots
tags:
- mahayana
year: 2021
journal: cjbs
volume: 16
pages: "36--74"
---

> Rather than the texts of a distinct form of Buddhism, it is better to regard them as a controversial class of text that spread within pre-existing Buddhist institutional structures.
> Some have argued that early sūtras show an orientation toward asceticm and meditation, but the texts rarely mention these practices.
They mainly advocate practices oriented toward the supernatural and the afterlife, especially textual practices focused on Mahāyāna sūtras themselves.

A quick debunking of some old theories about the early Mahāyāna.
34 changes: 7 additions & 27 deletions highlights.html
Original file line number Diff line number Diff line change
Expand Up @@ -32,41 +32,21 @@ <h2 id="latest"><i class="fas fa-clock"></i> Latest Arrivals</h2>
<p>... For the complete list, and to be informed about new arrivals, subscribe to <a href="/feed/content.xml">the content RSS Feed</a>.</p>
{% endif %}

{% assign allcontent = allcontent | where_exp: "c", "c.course" %}
{% assign thisyears = allcontent | where: "year", thisyear %}
{% assign lastyears = allcontent | where: "year", lastyear | where: "status", "featured" %}
{% assign allcontent = allcontent | where: "status", "featured" %}
{% assign courses = site.courses | map: "slug" %}
{% assign tags = site.tags | where: "status", "published" | map: "slug" | concat: courses %}
{% assign featurecontent = lastyears %}
{% for c in thisyears %}
{% if tags contains c.course %}
{% assign featurecontent = featurecontent | push: c %}
{% continue %}
{% endif %}
{% for t in c.tags %}
{% if tags contains t %}
{% assign featurecontent = featurecontent | push: c %}
{% break %}
{% endif %}
{% endfor %}
{% endfor %}
{% assign thisyears = allcontent | where: "year", thisyear | where_exp: "c", "tags contains c.course" %}
{% assign lastyears = allcontent | where: "year", lastyear | where_exp: "c", "tags contains c.course" %}
{% assign featurecontent = lastyears | concat: thisyears %}
<h2 id="recent"><i class="fas fa-calendar-week"></i> Recently Published</h2>
<p>Within the last couple years.</p>
{% include content_list.html contents=featurecontent orderby="-date" %}
{% for c in featurecontent %}
<div class="mb-3">{% include simple_content_title.html content=c %}</div>{% endfor %}

<h2 id="bestof"><i class="fas fa-medal"></i> Featured Selections</h2>
<p>A couple works are selected as the cream of the crop each year.</p>
{% capture fe %}c.year < {{ lastyear }}{% endcapture %}
{% assign fcon = allcontent | where: "status", "featured" | where_exp: "c", fe %}
{% assign featurecontent = "" | split: "" %}
{% for c in fcon %}
{% assign yd = year | minus: c.year %}
{% if c.stars < 5 %}
{% continue %}
{% endif %}
{% assign featurecontent = featurecontent | push: c %}
{% endfor %}
{% assign featurecontent = featurecontent | group_by: "year" | sort: "name" | reverse %}
{% assign featurecontent = allcontent | where_exp: "c", fe | where: "stars", 5 | group_by: "year" | sort: "name" | reverse %}
{% for y in featurecontent %}
<h3>{{ y.name }}</h3>
{% for c in y.items %}
Expand Down

0 comments on commit 23706f7

Please sign in to comment.