mirror of
https://github.com/calofmijuck/blog.git
synced 2025-12-06 22:53:51 +00:00
Compare commits
2 Commits
43e468b600
...
149399b90f
| Author | SHA1 | Date | |
|---|---|---|---|
|
149399b90f
|
|||
| 7ab0779bdb |
@@ -11,6 +11,8 @@
|
||||
|
||||
<!-- layout specified -->
|
||||
|
||||
{% assign js_dist = '/assets/js/dist/' %}
|
||||
|
||||
{% if page.layout == 'post' or page.layout == 'page' or page.layout == 'home' %}
|
||||
{% assign urls = urls | append: ',' | append: site.data.origin[type]['lazy-polyfill'].js %}
|
||||
|
||||
@@ -65,7 +67,7 @@
|
||||
{% assign js = 'commons' %}
|
||||
{% endcase %}
|
||||
|
||||
{% capture script %}/assets/js/dist/{{ js }}.min.js{% endcapture %}
|
||||
{% capture script %}{{ js_dist }}{{ js }}.min.js{% endcapture %}
|
||||
<script defer src="{{ script | relative_url }}"></script>
|
||||
|
||||
{% if page.math %}
|
||||
@@ -77,12 +79,12 @@
|
||||
/* start/end delimiter pairs for in-line math */
|
||||
inlineMath: [
|
||||
['$', '$'],
|
||||
["\\(", "\\)"]
|
||||
['\\(', '\\)']
|
||||
],
|
||||
/* start/end delimiter pairs for display math */
|
||||
displayMath: [
|
||||
['$$', '$$'],
|
||||
["\\[", "\\]"]
|
||||
['\\[', '\\]']
|
||||
],
|
||||
macros: {
|
||||
ds: "\\displaystyle",
|
||||
@@ -141,7 +143,8 @@
|
||||
|
||||
tilde: ["\\widetilde{#1}", 1],
|
||||
hat: ["\\widehat{#1}", 1],
|
||||
}
|
||||
},
|
||||
tags: 'ams'
|
||||
}
|
||||
};
|
||||
</script>
|
||||
@@ -149,16 +152,32 @@
|
||||
<script id="MathJax-script" async src="{{ site.data.origin[type].mathjax.js | relative_url }}"></script>
|
||||
{% endif %}
|
||||
|
||||
<!-- Pageviews -->
|
||||
{% if page.layout == 'post' %}
|
||||
{% assign provider = site.pageviews.provider %}
|
||||
|
||||
{% if provider and provider != empty %}
|
||||
{% case provider %}
|
||||
{% when 'goatcounter' %}
|
||||
{% if site.analytics[provider].id != empty and site.analytics[provider].id %}
|
||||
{% include pageviews/{{ provider }}.html %}
|
||||
{% endif %}
|
||||
{% endcase %}
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
||||
{% if jekyll.environment == 'production' %}
|
||||
<!-- PWA -->
|
||||
{% if site.pwa.enabled %}
|
||||
<script defer src="{{ '/app.js' | relative_url }}"></script>
|
||||
{% else %}
|
||||
<script defer src="{{ '/unregister.js' | relative_url }}"></script>
|
||||
<script defer src="{{ 'app.min.js' | prepend: js_dist | relative_url }}"></script>
|
||||
{% endif %}
|
||||
|
||||
<!-- GA -->
|
||||
{% if site.google_analytics.id != empty and site.google_analytics.id %}
|
||||
{% include google-analytics.html %}
|
||||
<!-- Web Analytics -->
|
||||
{% for analytics in site.analytics %}
|
||||
{% capture str %}{{ analytics }}{% endcapture %}
|
||||
{% assign type = str | split: '{' | first %}
|
||||
{% if site.analytics[type].id and site.analytics[type].id != empty %}
|
||||
{% include analytics/{{ type }}.html %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
{% endif %}
|
||||
|
||||
15
_posts/Development/2024-02-26-secure-iam.md
Normal file
15
_posts/Development/2024-02-26-secure-iam.md
Normal file
@@ -0,0 +1,15 @@
|
||||
---
|
||||
share: true
|
||||
categories:
|
||||
- Development
|
||||
tags:
|
||||
- AWS
|
||||
- dev
|
||||
title: Secure IAM on AWS with Multi-Account Strategy
|
||||
date: 2024-02-26
|
||||
github_title: 2024-02-26-secure-iam
|
||||
---
|
||||
|
||||
B.S. Graduation Paper, Received Best Paper Award!
|
||||
|
||||
- [Paper Link](https://zxcvber.com/secure-iam.pdf)
|
||||
Reference in New Issue
Block a user