Skip to content

Latest commit

 

History

History
297 lines (269 loc) · 3.8 KB

Month of the year template.md

File metadata and controls

297 lines (269 loc) · 3.8 KB

#personal-growth #personal

Months of the Year {{date:YYYY}}

Write 1 to 3 bullet points for any defining events that took place during each of the months of the year. Use your calendar, journal, photo reel, social media posts, or any other systems of record to prompt your memory. 

Look for significant events that adequately represent the month to you.

Hack: make sure the dates in the blocks are correct for you

January

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 1,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 2,
		    "day": 1
	      }
      }]
    }
  }
}

February

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 2,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 3,
		    "day": 1
	      }
      }]
    }
  }
}

March

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 3,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 4,
		    "day": 1
	      }
      }]
    }
  }
}

April

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 4,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 5,
		    "day": 1
	      }
      }]
    }
  }
}

May

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 5,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 6,
		    "day": 1
	      }
      }]
    }
  }
}

June

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 6,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 7,
		    "day": 1
	      }
      }]
    }
  }
}

July

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 7,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 8,
		    "day": 1
	      }
      }]
    }
  }
}

August

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 8,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 9,
		    "day": 1
	      }
      }]
    }
  }
}

September

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 9,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 10,
		    "day": 1
	      }
      }]
    }
  }
}

October

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 10,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 11,
		    "day": 1
	      }
      }]
    }
  }
}

November

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 11,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 12,
		    "day": 1
	      }
      }]
    }
  }
}

December

{
  "filters": {
    "dateFilter": {
      "ranges": [
      {
	      "startDate": {
			"year": {{date:YYYY}},
		    "month": 12,
		    "day": 1
	      },
	      "endDate": {
			"year": {{date:YYYY}},
		    "month": 1,
		    "day": 1
	      }
      }]
    }
  }
}